test end
Compilation fails.
test runtime end
test exception end
A Throwable is thrown by main at runtime.
第1题:
public class Test { public static void main( String[] args) { String foo = args[1]; String bar = args[2]; String baz = args[3]; System.out.println(“baz = “ + baz); } } And the command line invocation: java Test red green blue What is the result?()
第2题:
11. String test = “This is a test”; 12. String[] tokens = test.split(”/s”); 13. System.out.println(tokens.length); What is the result?()
第3题:
public class Test { private static int[] x; public static void main(String[] args) { System.out.println(x[0]); } } What is the result?()
第4题:
public static void test(String str) { int check = 4; if (check = str.length()) { System.out.print(str.charAt(check -= 1) +“, “); } else { System.out.print(str.charAt(0) + “, “); } } and the invocation: test(”four”); test(”tee”); test(”to”); What is the result?()
第5题:
collie
harrier
Compilation fails.
collie harrier
An exception is thrown at runtime.
第6题:
0
null
Compilation fails.
A NullPointerException is thrown at runtime.
An ArrayIndexOutOfBoundsException is thrown at runtime.
第7题:
true
false
Compilation fails.
An exception is thrown at runtime.
第8题:
test end
Compilation fails.
test runtime end
test exception end
A Throwable is thrown by main at runtime.
第9题:
An exception is thrown at runtime.
1
4
Compilation fails.
0
第10题:
r, t, t,
r, e, o,
Compilation fails.
An exception is thrown at runtime.
第11题:
Finally
Compilation fails.
The code runs with no output.
An exception is thrown at runtime.
第12题:
NULL
Compilation fails.
The code runs with no output.
An exception is thrown at runtime.
第13题:
public class Foo { public static void main(String[] args) { try { return; } finally { System.out.println( “Finally” ); } } } What is the result?()
第14题:
public class Test { public enum Dogs {collie, harrier}; public static void main(String [] args) { Dogs myDog = Dogs.collie; switch (myDog) { case collie: System.out.print(”collie “); case harrier: System.out.print(”harrier “); } } } What is the result?()
第15题:
static void test() throws Error { if (true) throw new AssertionError(); System.out.print(”test “); } public static void main(String[] args) { try { test(); } catch (Exception ex) { System.out.print(”exception “); } System.out.print(”elld “); } What is the result?()
第16题:
public class Test { public static void main(String [] args) { System.out.println(args.length > 4 && args[4].equals(“-d”)); } } If the program is invoked using the command line: java Test One Two Three –d What is the result?()
第17题:
f[0] = 0
f[0] = 0.0
Compilation fails.
An exception is thrown at runtime.
第18题:
r, t, t,
r, e, o,
Compilation fails.
An exception is thrown at runtime.
第19题:
TestA
TestB
Compilation fails.
An exception is thrown at runtime.
第20题:
baz =
baz = null
baz = blue
Compilation fails.
An exception is thrown at runtime.
第21题:
peep
bark
meow
Compilation fails.
An exception is thrown at runtime.
第22题:
end
Compilation fails.
exception end
exception test end
A Throwable is thrown by main.
An Exception is thrown by main.
第23题:
0
1
4
Compilation fails.
An exception is thrown at runtime.