单项选择题
A. finally
B. exception finished
C. finally exception finished
D. Compilation fails.
单项选择题 int x = 3; int y = 1; if (x = y) { System.out.println(“x = “ + x); } What is the result? ()
单项选择题 Youwantaclasstohaveaccesstomembersofanotherclassinthesamepackage.Whichisthemostrestrictiveaccessthataccomplishesthisobjective?()
单项选择题 int i = 1,j = 10; do { if(i>j) { break; } j--; } while (++i <5); System.out.println(“i =” +i+” and j = “+j); What is the result?()