网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
单选题
Given: What is the result?()
A
Hello
B
Hello World
C
Compilation fails.
D
Hello World 5
E
The code runs with no output.
F
An exception is thrown at runtime.
参考答案
参考解析
解析:
暂无解析
更多 “单选题Given: What is the result?()A HelloB Hello WorldC Compilation fails.D Hello World 5E The code runs with no output.F An exception is thrown at runtime.” 相关考题
考题
public class ClassA{public int getValue(){int value=0;boolean setting=true;String title=Hello;if(value||(setting title==Hello)){return 1;}if(value==1title.equals(Hello)){return 2;}}}And:ClassA a=new ClassA();a.getValue();What is the result?()A.1B.2C.Compilation fails.D.The code runs with no output.E.An exception is thrown at runtime.
考题
Click the Exhibit button. Given: ClassA a = new ClassA(); a.methodA(); What is the result? ()
A.Compilation fails.B.ClassC is displayed.C.The code runs with no output.D.An exception is thrown at runtime.
考题
public class Foo { public void main (String args) { system.out.printIn(“Hello World.”); } } What is the result? () A、 An exception is thrown.B、 The code does no compile.C、 “Hello World.” Is printed to the terminal.D、 The program exits without printing anything.
考题
public class Foo { public void main( String[] args ) { System.out.println( “Hello” + args[0] ); } } What is the result if this code is executed with the command line?()A、 HelloB、 Hello FooC、 Hello worldD、 Compilation fails.E、 The code does not run.
考题
public class Alpha{ public static void main( string[] args ){ if ( args.length == 2 ) { if ( args.[0].equalsIgnoreCase(“-b”) ) System.out.println( new Boolean( args[1] )); } } } And the code is invoked by using the command: java Alpha –b TRUE What is the result?() A、 trueB、 nullC、 falseD、 Compilation fails.E、 The code runs with no output.F、 An exception is thrown at runtime.
考题
Runnable r = new Runnable() { public void run() { System.out.print(”Cat”); } }; Threadt=new Thread(r) { public void run() { System.out.print(”Dog”); } }; t.start(); What is the result?() A、 CatB、 DogC、 Compilation fails.D、 The code runs with no output.E、 An exception is thrown at runtime.
考题
public class X { public static void main (String[]args) { string s = new string (“Hello”); modify(s); System.out.printIn(s); } public static void modify (String s) { s += “world!”; } } What is the result?() A、 The program runs and prints “Hello”B、 An error causes compilation to fail.C、 The program runs and prints “Hello world!”D、 The program runs but aborts with an exception.
考题
10. public class Hello { 11. String title; 12. int value; 13. public Hello() { 14. title += “ World”; 15. } 16. public Hello(int value) { 17. this.value = value; 18. title = “Hello”; 19. Hello(); 20. } 21. } and: 30. Hello c = new Hello(5); 31. System.out.println(c.title); What is the result?() A、 HelloB、 Hello WorldC、 Compilation fails.D、 Hello World 5E、 The code runs with no output.F、 An exception is thrown at runtime.
考题
String a = null; a.concat(“abc”); a.concat(“def”); System.out.println(a); What is the result?() A、 abcB、 nullC、 abcdefD、 Compilation fails.E、 The code runs with no output.F、 An exception is thrown at runtime.
考题
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、 1B、 2C、 Compilation fails.D、 The code runs with no output.E、 An exception is thrown at runtime.
考题
class Base { Base() { System.out.print(“Base”); } } public class Alpha extends Base { public static void main( String[] args ) { new Alpha(); new Base(); } } What is the result?() A、 BaseB、 BaseBaseC、 Compilation fails.D、 The code runs with no output.E、 An exception is thrown at runtime.
考题
单选题Given: What is the result?()A
collieB
harrierC
Compilation fails.D
collie harrierE
An exception is thrown at runtime.
考题
单选题10. public class Hello { 11. String title; 12. int value; 13. public Hello() { 14. title += “ World”; 15. } 16. public Hello(int value) { 17. this.value = value; 18. title = “Hello”; 19. Hello(); 20. } 21. } and: 30. Hello c = new Hello(5); 31. System.out.println(c.title); What is the result?()A
HelloB
Hello WorldC
Compilation fails.D
Hello World 5E
The code runs with no output.F
An exception is thrown at runtime.
考题
单选题Given: What is the result?()A
r, t, t,B
r, e, o,C
Compilation fails.D
An exception is thrown at runtime.
考题
单选题Runnable r = new Runnable() { public void run() { System.out.print(”Cat”); } }; Threadt=new Thread(r) { public void run() { System.out.print(”Dog”); } }; t.start(); What is the result?()A
CatB
DogC
Compilation fails.D
The code runs with no output.E
An exception is thrown at runtime.
考题
单选题String a = null; a.concat(“abc”); a.concat(“def”); System.out.println(a); What is the result?()A
abcB
nullC
abcdefD
Compilation fails.E
The code runs with no output.F
An exception is thrown at runtime.
考题
单选题Click the Exhibit button. Given: ClassA a = new ClassA( ); a.methodA( ); What is the result? ()A
Compilation fails.B
ClassC is displayed.C
The code runs with no output.D
An exception is thrown at runtime.
考题
单选题Given: What is the result?()A
TestAB
TestBC
Compilation fails.D
An exception is thrown at runtime.
考题
单选题class Base { Base() { System.out.print(“Base”); } } public class Alpha extends Base { public static void main( String[] args ) { new Alpha(); new Base(); } } What is the result?()A
BaseB
BaseBaseC
Compilation fails.D
The code runs with no output.E
An exception is thrown at runtime.
考题
单选题Given: What is the result?()A
An exception is thrown at runtime.B
int LongC
Compilation fails.D
Short Long
考题
单选题Given: What is the result?()A
HelloB
Hello WorldC
Compilation fails.D
Hello World 5E
The code runs with no output.
考题
单选题Given: What is the result?()A
An exception is thrown at runtime.B
r, e, o,C
Compilation fails.D
r, t, t,
考题
单选题Given: What is the result?()A
peepB
barkC
meowD
Compilation fails.E
An exception is thrown at runtime.
考题
单选题public class Foo { public void main( String[] args ) { System.out.println( “Hello” + args[0] ); } } What is the result if this code is executed with the command line?()A
HelloB
Hello FooC
Hello worldD
Compilation fails.E
The code does not run.
考题
单选题public class Alpha{ public static void main( string[] args ){ if ( args.length == 2 ) { if ( args.[0].equalsIgnoreCase(“-b”) ) System.out.println( new Boolean( args[1] )); } } } And the code is invoked by using the command: java Alpha –b TRUE What is the result?()A
trueB
nullC
falseD
Compilation fails.E
The code runs with no output.F
An exception is thrown at runtime.
考题
单选题public class ClassA{ public int getValue(){ int value=0; boolean setting=true; String title="Hello"; if(value||(setting title=="Hello")){return 1;} if(value==1title.equals("Hello")){return 2;} } } And: ClassA a=new ClassA(); a.getValue(); What is the result?()A
1B
2C
Compilation fails.D
The code runs with no output.E
An exception is thrown at runtime.
考题
单选题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
1B
2C
Compilation fails.D
The code runs with no output.E
An exception is thrown at runtime.
考题
单选题Given: What is the result?()A
HelloB
Hello WorldC
Compilation fails.D
Hello World 5E
The code runs with no output.F
An exception is thrown at runtime.
热门标签
最新试卷