单项选择题
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.
点击查看答案&解析
相关考题
-
多项选择题
Youneedtostoreelementsinacollectionthatguaranteesthatnoduplicatesarestored.Whichtwointerfacesprovidethatcapability?()
A. Java.util.Map
B. Java.util.Set
C. Java.util.List
D. Java.util.StoredSet
E. Java.util.StoredMap
F. Java.util.Collection -
单项选择题
switch (i) { default: System.out.printIn(“Hello”); } What is the acceptable type for the variable i?()
A. Byte
B. Long
C. Float
D. Double
E. Object
F. A and B
G. C and D -
多项选择题
1. int I=1, j=0 2. 3. switch(i) { 4. case 2: 5. j+=6; 6. 7. case 4: 8. j+=1; 9. 10. default: 11. j +=2; 12. 13. case 0: 14. j +=4; 15. } 16. What is the value of j at line 16?()
A. 0
B. 1
C. 2
D. 4
E. 6
