单项选择题Which statement is true for the class java.util.ArrayList?() 

A. The elements in the collection are ordered.
B. The collection is guaranteed to be immutable.
C. The elements in the collection are guaranteed to be unique.
D. The elements in the collection are accessed using a unique key.
E. The elements in the collections are guaranteed to be synchronized.


您可能感兴趣的试卷

你可能感兴趣的试题

1.多项选择题You need to store elements in a collection that guarantees that no duplicates are stored. Which two interfaces provide that capability?()

A. Java.util.Map
B. Java.util.Set
C. Java.util.List
D. Java.util.StoredSet
E. Java.util.StoredMap
F. Java.util.Collection

4.单项选择题

public class WhileFoo {  
public static void main (String args) {  
int x= 1, y = 6;  
while (y--) {x--;}  
system.out.printIn(“x=” + x “y =” + y);  
}  
}  
What is the result?()

A. The output is x = 6 y = 0
B. The output is x = 7 y = 0
C. The output is x = 6 y = -1
D. The output is x = 7 y = -1
E. Compilation will fail.

5.单项选择题

public class X {  
public static void main (String args) {  
byte b = 127;  
byte c = 126;  
byte d = b + c;  
}  
}  
Which statement is true?()  

A. Compilation succeeds and d takes the value 253.
B. Line 5 contains an error that prevents compilation.
C. Line 5 throws an exception indicating “Out of range”
D. Line 3 and 4 contain error that prevent compilation.
E. The compilation succeeds and d takes the value of 1.

6.单项选择题

public class X {  
public static void main (Stringargs) {  
int a = new int [1]  
modify(a);  
System.out.printIn(a[0]);  
}  
public static void modify (int a) {  
a[0] ++;  
 }  
 }  
What is the result?()  

A. The program runs and prints “0”
B. The program runs and prints “1”
C. The program runs but aborts with an exception.
D. An error “possible undefined variable” at line 4 causes compilation to fail.
E. An error “possible undefined variable” at line 9 causes compilation to fail.

7.多项选择题Which two are equivalent? ()  

A. 16>4
B. 16/2
C. 16*4
D. 16>>2
E. 16/2^2
F. 16>>>2

8.单项选择题

public class X {  
public static void main (Stringargs) {  
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 X {  
public static void main (Stringargs) {  
String s1 = new String (“true”);  
Boolean b1 = new Boolean (true);  
if (s2.equals(b1)) {  
System.out.printIn(“Equal”);  
}  
}  
}  
What is the result? () 

A. The program runs and prints nothing.
B. The program runs and prints “Equal”
C. An error at line 5 causes compilation to fail.
D. The program runs but aborts with an exception.