单项选择题

Given:

What is the result? ()

A. A new Item object is created with the preferred value in the id attribute.
B. The attribute id in the Item object is modified to the new value.
C. Compilation fails.
D. An exception is thrown at runtime.
E. The attribute id in the Item object remains unchanged.


您可能感兴趣的试卷

你可能感兴趣的试题

1.单项选择题

Given:

What is the result?()

A. An exception is thrown at runtime.
B. int Long
C. Compilation fails.
D. Short Long

2.单项选择题

Given:

Which statement is true?()

A. The cardID and limit variables break polymorphism.
B. The code demonstrates polymorphism.
C. The ownerName variable breaks encapsulation.
D. The setCardInformation method breaks encapsulation.
E. The class is fully encapsulated.

3.单项选择题

Click the Exhibit button.  
Given this code from Class B:  
25. A a1 = new A();  
26. A a2 = new A();  
27. A a3 = new A();  
28. System.out.println(A.getInstanceCount()); 
 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. Compilation fails because of an error on line 28.
E. A runtime error occurs when line 25 executes.

5.多项选择题

Given:  
10. class One {  
11. void foo() { }  
12. }  
13. class Two extends One {  
14. //insert method here  
15. }  
Which three methods, inserted individually at line 14, will correctly complete class Two?()

A. public void foo() { /* more code here */ }
B. private void foo() { /* more code here */ }
C. protected void foo() { /* more code here */ }
D. int foo() { /* more code here */ }  
E. void foo() { /* more code here */ }

最新试题

Given:What is the result? ()

题型:单项选择题

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

题型:单项选择题

Given: Which code, inserted at line 15, creates an instance of the Point class defined in Line?()

题型:单项选择题

Click the Exhibit button.  Given this code from Class B:  25. A a1 = new A();  26. A a2 = new A();  27. A a3 = new A();  28. System.out.println(A.getInstanceCount());  What is the result?()

题型:单项选择题

Click the Exhibit button.  Given:Which two statements are true if a NullPointerException is thrown on line 3 of class C?()

题型:多项选择题

Given:  12. NumberFormat nf = NumberFormat.getInstance();  13. nf.setMaximumFractionDigits(4);  14. nf.setMinimumFractionDigits(2);  15. String a = nf.format(3.1415926);  16. String b = nf.format(2);  Which two statements are true about the result if the default locale is Locale.US?()

题型:多项选择题

Given:What is the result?() 

题型:单项选择题

Given:  11. // insert code here  12. private N min, max;  13. public N getMin() { return min; }  14. public N getMax() { return max; }  15. public void add(N added) {  16. if (min == null  added.doubleValue() < min.doubleValue()) 17. min = added;  18. if (max == null  added.doubleValue() > max.doubleValue()) 19. max = added;  20. }  21. }  Which two, inserted at line 11, will allow the code to compile?()

题型:多项选择题

Given: What is the result?()

题型:单项选择题

Given:  12. System.out.format("Pi is approximately %d.", Math.PI);  What is the result?()

题型:单项选择题