单项选择题
A. An exception is thrown.
B. The program exists without printing anything.
C. An error at line 1 causes compilation to fail.
D. An error at line 6 causes the compilation to fail.
E. “Running” is printed and the program exits.
多项选择题 Whichtwocandirectlycauseathreadtostopexecuting?()
单项选择题 public class ForBar { public static void main(String args) { int i = 0, j = 5; tp: for (;;) { i ++; for(;;) if(i > --j) break tp; } system.out.printIn(“i = ” + i + “, j = “+ j); } } What is the result? ()
多项选择题 Whichfourtypesofobjectscanbethrownusingthethrowstatement?()