单项选择题

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.


您可能感兴趣的试卷

你可能感兴趣的试题

1.单项选择题

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;}}

3.单项选择题

What is the result?()

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.

5.单项选择题

Which code should be inserted at line 1 of Demo.java to compile and run Demo toprint "pizzapizza"?()

A.import utils.*;
B.static import utils.*;
C.import utils.Repetition.*;
D.static import utils.Repetition.*;
E.import utils.Repetition.twice();
F.import static utils.Repetition.twice;
G.static import utils.Repetition.twice;

6.单项选择题

What is the result?()

A.test
B.null
C.An exception is thrown at runtime.
D.Compilation fails because of an error in line 1.
E.Compilation fails because of an error in line 4.
F.Compilation fails because of an error in line 5.

7.单项选择题

Which code, inserted at line 14, allows the Sprite class to compile?()

A.Direction d = NORTH;
B.Nav.Direction d = NORTH;
C.Direction d = Direction.NORTH;
D.Nav.Direction d = Nav.Direction.NORTH;

9.单项选择题A class games.cards.Poker is correctly defined in the jar file Poker.jar. A user wants to execute the main method of Poker on a UNIX system using the command: java games.cards.Poker What allows the user to do this?()

A.put Poker.jar in directory /stuff/java,and set the CLASSPATH to include /stuff/java
B.put Poker.jar in directory /stuff/java,and set the CLASSPATH to include /stuff/java/*.jar
C.Put Poker.jar in directory /stuff/java,and set the CLASSPATH to include /stuff/java/Poker.jar
D.put Poker.jar in directory /stuff/java/games/cards,and set the CLASSPATH to include /stuff/java
E.put Poker.jar in directory /stuff/java/games/cards,and set the CLASSPATH to include /stuff/java/*.jar
F.put Poker.jar in directory /stuff/java/games/cards,and set the CLASSPATH to include /stuff/java/Poker.jar

10.单项选择题

What is the result?()

A.s=14
B.s=16
C.s=10
D.Compilation fails.
E.An exception is thrown at runtime.