42
420
462
42042
Compilation fails.
An exception is thrown at runtime.
第1题:
String a = “ABCD”; String b = a.toLowerCase(); b.replace(‘a’, ‘d’); b.replace(‘b’, ‘c’); System.out.println(b); What is the result? ()
第2题:
String a = null; a.concat(“abc”); a.concat(“def”); System.out.println(a); What is the result?()
第3题:
collie
harrier
Compilation fails.
collie harrier
An exception is thrown at runtime.
第4题:
2
3
12
23
123
Compilation fails.
An exception is thrown at runtime.
第5题:
abc
null
abcdef
Compilation fails.
The code runs with no output.
An exception is thrown at runtime.
第6题:
TestA
TestB
Compilation fails.
An exception is thrown at runtime.
第7题:
peep
bark
meow
Compilation fails.
An exception is thrown at runtime.
第8题:
No output is produced. 1 2 3
No output is produced. 2 3 4
No output is produced. 1 2 3 4
An exception is thrown at runtime. 1 2 3
第9题:
X, followed by an Exception.
No output, and an Exception is thrown.
Compilation fails due to an error on line 14.
Compilation fails due to an error on line 16.
Compilation fails due to an error on line 17.
第10题:
test end
Compilation fails.
test runtime end
test exception end
A Throwable is thrown by main at runtime.
第11题:
1
12
14
123
Compilation fails.
An exception is thrown at runtime.
第12题:
Hello
Hello World
Compilation fails.
Hello World 5
The code runs with no output.
An exception is thrown at runtime.
第13题:
public classYippee{ public static void main(String[]args){ for(intx=1;xSystem.out.print(args[x]+""); } } } and two separate command line invocations:j avaYippee javaYippee1234 What is the result?()
第14题:
42
420
462
42042
Compilation fails.
An exception is thrown at runtime.
第15题:
r, t, t,
r, e, o,
Compilation fails.
An exception is thrown at runtime.
第16题:
B
B, followed by an Exception.
Compilation fails due to an error on line 9.
Compilation fails due to an error on line 14.
An Exception is thrown with no other output.
第17题:
Compilation fails.
ClassC is displayed.
The code runs with no output.
An exception is thrown at runtime.
第18题:
abcd
ABCD
dccd
dcba
Compilation fails.
An exception is thrown at runtime.
第19题:
w-f
f-p w-f
w-f b-f
f-p w-f b-f
Compilation fails.
An exception is thrown at runtime.
第20题:
No output is produced. 123
No output is produced. 234
No output is produced. 1234
An exception is thrown at runtime. 123
An exception is thrown at runtime. 234
An exception is thrown at runtime. 1234
第21题:
Afoo Afoo
Afoo Bfoo
Bfoo Afoo
Bfoo Bfoo
Compilation fails.
An exception is thrown at runtime.
第22题:
00
0001
000120
00012021
Compilation fails.
An exception is thrown at runtime.
第23题:
4
5
8
9
Compilation fails.
An exception is thrown at runtime.
It is impossible to determine for certain.