Given: What is the result? ()
A.2 B.24 C.234 D.246 E.2346 F.Compilation fails.
单项选择题Given: 11. public void go(int x) { Which statement is true?()
A.All of the assert statements are used appropriately. B.Only the assert statement on line 12 is used appropriately. C.Only the assert statement on line 15 is used appropriately. D.Only the assert statement on line 18 is used appropriately. E.Only the assert statements on lines 12 and 15 are used appropriately. F.Only the assert statements on lines 12 and 18 are used appropriately. G.Only the assert statements on lines 15 and 18 are used appropriately.
单项选择题Given: What is the result?()
A.Exception B.A,B,Exception C.Compilation fails because of an error in line 20. D.Compilation fails because of an error in line 14. E.A NullPointerException is thrown at runtime.
多项选择题Which two code fragments are most likely to cause a StackOverflowError?()
A. B. C. D. E. F.
多项选择题Given: Which four code fragments, inserted independently at line 7, will compile? ()
A.public void m1() { } B.protected void m1() { } C.private void m1() { } D.void m2() { } E.public void m2() { } F.protected void m2() { } G.private void m2() { }
单项选择题Given: Which statement is true about the class of an object that can reference the variable base? ()
A.It can be any class. B.No class has access to base. C.The class must belong to the geometry package. D.The class must be a subclass of the class Hypotenuse.