单选题Given: What is the result?()A CanadaB null CanadaC Canada nullD Canada CanadaE Compilation fails due to an error on line 26.

题目
单选题
Given: What is the result?()
A

Canada

B

null Canada

C

Canada null

D

Canada Canada

E

Compilation fails due to an error on line 26.

参考答案和解析
正确答案: A
解析: 暂无解析
如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

10. interface A { void x(); }  11. class B implements A { public void x() { } public voidy() { } }  12. class C extends B { public void x() {} }  And:  20. java.util.List list = new java.util.ArrayList();  21. list.add(new B());  22. list.add(new C());  23. for (A a:list) {  24. a.x();  25. a.y();;  26. }  What is the result?() 

  • A、 The code runs with no output.
  • B、 An exception is thrown at runtime.
  • C、 Compilation fails because of an error in line 20.
  • D、 Compilation fails because of an error in line 21.
  • E、 Compilation fails because of an error in line 23.
  • F、 Compilation fails because of an error in line 25.

正确答案:F

第2题:

package foo;  import java.util.Vector; private class MyVector extends Vector {  int i = 1;  public MyVector() {  i = 2; } }  public class MyNewVector extends MyVector {  public MyNewVector() {  i = 4;  }  public static void main(String args[]) {  MyVector v = new MyNewVector();  }  }  What is the result?()

  • A、 Compilation succeeds.
  • B、 Compilation fails because of an error at line 5.
  • C、 Compilation fails because of an error at line 6.
  • D、 Compilation fails because of an error at line 14.
  • E、 Compilation fails because of an error at line 17.

正确答案:B

第3题:

Given:What is the result when method testIfA is invoked?()

A.True

B.Not true

C.An exception is thrown at runtime.

D.Compilation fails because of an error at line 12.

E.Compilation fails because of an error at line 19.


参考答案:A

第4题:

单选题
Given: What is the result?()
A

Canada

B

null Canada

C

Canada null

D

Canada Canada

E

Compilation fails due to an error on line 26.

F

Compilation fails due to an error on line 29.


正确答案: A
解析: 暂无解析

第5题:

单选题
Given: 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.


正确答案: B
解析: 暂无解析

第6题:

23. Object [] myObjects = {  24. new integer(12),  25. new String(”foo”),  26. new integer(5),  27. new Boolean(true)  28. };  29. Arrays.sort(myObjects);  30. for( int i=0; i31. System.out.print(myObjects[i].toString());  32. System.out.print(” “);  33. }  What is the result?() 

  • A、 Compilation fails due to an error in line 23.
  • B、 Compilation fails due to an error in line 29.
  • C、 A ClassCastException occurs in line 29.
  • D、 A ClassCastException occurs in line 31.
  • E、 The value of all four objects prints in natural order.

正确答案:C

第7题:

单选题
Given: What is the result?()
A

Compilation succeeds.

B

Compilation fails due to multiple errors.

C

Compilation fails due to an error only on line 20.

D

Compilation fails due to an error only on line 21.

E

Compilation fails due to an error only on line 22.


正确答案: C
解析: 暂无解析

第8题:

Click the Exhibit button.Given:What is the result?()

A.Line 26 prints "a" to System.out.

B.Line 26 prints "b" to System.out.

C.An exception is thrown at line 26 at runtime.

D.Compilation of class A will fail due to an error in line 6.


参考答案:A

第9题:

单选题
Given: What is the result?()
A

Compilation fails due to an error in line 23.

B

Compilation fails due to an error in line 29.

C

A ClassCastException occurs in line 29.

D

A ClassCastException occurs in line 31.

E

The value of all four objects prints in natural order.


正确答案: E
解析: 暂无解析

第10题:

单选题
Given: What is the result?()
A

B

B

B, followed by an Exception.

C

Compilation fails due to an error on line 9.

D

Compilation fails due to an error on line 14.

E

An Exception is thrown with no other output.


正确答案: B
解析: 暂无解析

更多相关问题