InterviewSolution
Saved Bookmarks
| 1. |
Which of these class object has an architecture similar to that of array?(a) Bitset(b) Map(c) Hashtable(d) All of the mentionedThe question was posed to me in an interview for internship.I need to ask this question from Java.util in chapter java.util – The Collections Framework of Java |
|
Answer» CORRECT answer is (a) Bitset For explanation: Bitset CLASS CREATES a SPECIAL type of array that holds bit values. This array can increase in SIZE as needed. |
|