What is the result?()
A.Compilation of class A fails. B.Line 28 prints the value 3 to System.out. C.Line 28 prints the value 1 to System.out. D.A runtime error occurs when line 25 executes. E.Compilation fails because of an error on line 28.
单项选择题Which code, inserted at line 15, creates an instance of the Point class defined in Line?()
A.Point p = new Point(); B.Line.Point p = new Line.Point(); C.The Point class cannot be instatiated at line 15. D.Line l = new Line(); l.Point p = new l.Point();
单项选择题What is the result?()
A.Mr. John Doe B.An exception is thrown at runtime. C.Compilation fails because of an error in line 12. D.Compilation fails because of an error in line 15. E.Compilation fails because of an error in line 20.
单项选择题Which code, inserted at line 15, allows the class Sprite to compile?()
A.Foo{public int bar(){return 1;}} B.new Foo{public int bar(){return 1;}} C.new Foo(){public int bar(){return 1;}} D.new class Foo{public int bar(){return 1;}}
多项选择题Given: package com.sun.scjp; public class Geodetics { public static final double DIAMETER = 12756.32; kilometers } Which two correctly access the DIAMETER member of the Geodetics class?()
A.A B.B C.C D.D
A.12,4 B.The code runs with no output. C.An exception is thrown at runtime. D.Compilation fails because of an error in line 21. E.Compilation fails because of an error in line 22. F.Compilation fails because of an error in line 31.