多项选择题
Which two statements are true?()
A.Line 35 will not compile. B.Line 36 will not compile. C.Line 37 will not compile. D.Line 38 will not compile.
public class ClassA { public int getValue() { int val...
单项选择题
public class ClassA { public int getValue() { int value=0; boolean setting = true; String title=”Hello”; (value || (setting && title == “Hello”)) { return 1; } (value == 1 & title.equals(”Hello”)) { return 2; } } } And: ClassA a = new ClassA(); a.getValue(); What is the result?()
A. 1 B. 2 C. Compilation fails. D. The code runs with no output. E. An exception is thrown at runtime.
String[] elements = { “for”, “tea”, “too” }; String fi...
String[] elements = { “for”, “tea”, “too” }; String first = (elements.length > 0)? elements[0] null; What is the result?()
A. Compilation fails. B. An exception is thrown at runtime. C. The variable first is set to null. D. The variable first is set to elements[0].
11. class Cup { } 12. class PoisonCup extends Cup { } ...
11. class Cup { } 12. class PoisonCup extends Cup { } 21. public void takeCup(Cup c) { 22. if(c instanceof PoisonCup) { 23. System.out.println(”Inconceivable!”); 24. } else if(c instanceof Cup) { 25. System.out.println(”Dizzying intellect!”); 26. } else { 27. System.exit(0); 28. } 29. } And the execution of the statements: Cup cup = new PoisonCup(); takeCup(cup); What is the output?()
A. Inconceivable! B. Dizzying intellect! C. The code runs with no output. D. An exception is thrown at runtime. E. Compilation fails because of an error in line 22.