单项选择题
A. The code will not compile.
B. The output is caught exception.
C. The output is caught IOException.
D. The program executes normally without printing a message.
单项选择题 public class foo { public static void main (string[]args) try {return;} finally {system.out.printIn(“Finally”);} } What is the result?()
多项选择题 switch (i) { default: System.out.printIn(“Hello”); ) What are the two acceptable types for the variable i?()
单项选择题 int i= 1, j= 10 ; do ( if (i++> --j) continue; ) while (i<5); After execution, what are the values for I and j?()