单项选择题

String a = “ABCD”; 
String b = a.toLowerCase(); 
b.replace(‘a’, ‘d’); 
b.replace(‘b’, ‘c’); 
System.out.println(b);  
What is the result? () 

A. abcd
B. ABCD
C. dccd
D. dcba
E. Compilation fails.
F. An exception is thrown at runtime.


您可能感兴趣的试卷

你可能感兴趣的试题

1.单项选择题System.out.println(Math.sqrt(-4D));  What is the result?()  

A. –2
B. NaN
C. Infinity
D. Compilation fails.
E. An exception is thrown at runtime.

2.单项选择题Which interface does java.util.Hashtable implement?()  

A. java.util.Map
B. java.util.List
C. java.util.Hashable
D. java.util.Collection

3.单项选择题

public class Test { 
public static void main(String[] args) { 
String str = NULL; 
System.out.println(str); 
} 
}  
What is the result?()  

A. NULL
B. Compilation fails.
C. The code runs with no output.
D. An exception is thrown at runtime.

5.单项选择题What is the numerical range of a char?()   

A. 0 ... 32767
B. 0 ... 65535
C. –256 ... 255
D. –32768 ... 32767
E. Range is platform dependent.

6.多项选择题Which two statements are true regarding the return values of property written hashCode and equals methods from two instances of the same class?()

A. If the hashCode values are different, the objects might be equal.
B. If the hashCode values are the same, the object must be equal.
C. If the hashCode values are the same, the objects might be equal.
D. If the hashCode values are different, the objects must be unequal.

7.多项选择题Which two are reserved words in the Java programming language?()  

A. run
B. import
C. default
D. implement

8.单项选择题

11. public static void main(String[] args) { 
12. Object obj = new Object() { 
13. public int hashCode() { 
14. returns 42;
15. } 
16. }; 
17. System.out.println(obj.hashCode()); 
18. }   
What is the result? () 

A. 42
B. An exception is thrown at runtime.
C. Compilation fails because of an error on line 12.
D. Compilation fails because of an error on line 16.
E. Compilation fails because of an error on line 17.

9.单项选择题Which method must be defined by a class implementing the java.lang.Runnable interface? () 

A. void run()
B. public void run()
C. public void start()
D. void run(int priority)
E. public void run(int priority)
F. public void start(int priority)