Home
About Us
Contact Us
Bookmark
Saved Bookmarks
Current Affairs
General Knowledge
Chemical Engineering
UPSEE
BSNL
ISRO
BITSAT
Amazon
ORACLE
Verbal Ability
→
Java Collections Tutorial
→
Java Collections Interview Questions in Java Collections Tutorial
→
Name The Core Collection Classes?
1.
Name The Core Collection Classes?
Answer»
AbstractCollection - Implements most of the Collection interface.
AbstractList - Extends AbstractCollection and implements
LIST
interface.
AbstractSequentialList - Extends AbstractList to provide sequential access.
ArrayList - Extends AbstractList to provide dynamic array implementation.
LinkedList - Extends AbstractSequentialList to implement a linked list.
AbstractQueue - Extends AbstractCollection and implements Queue interface.
ARRAYDEQUE
- Resizable-array implementation of the Deque interface.
PriorityQueue - Extends AbstractQueue to provide a priority-based queue.
AbstractSet - Extends AbstractCollection and implements Set interface.
HashSet - Extends AbstractSet backed by a
HASHTABLE
(
ACTUALLY
a HashMap instance).
LinkedHashSet - Extends HashSet to provide insertion order interation.
TreeSet - Extends AbstractSet (and implements NavigableSet interface) to provide sorted set.
EnumSet - Extends AbstractSet for
USE
with Enum elements.
Show Answer
Discussion
No Comment Found
Post Comment
Related InterviewSolutions
What Is Linkedhashset?
Which Set Implementation Should Be Used If You Want The Insertion Order To Be Maintained?
How Does Hashset Internally Works In Java?
Hashmap Vs Linkedhashmap Vs Treemap In Java?
Difference Between Hashmap And Hashtable In Java?
What Is A Identityhashmap?
What Is A Weakhashmap?
What Is Treemap In Java?
Which Map Implementation Should Be Used If You Want Map Values To Be Sorted By Keys?
What Is Linkedhashmap?
Reply to Comment
×
Name
*
Email
*
Comment
*
Submit Reply
Your experience on this site will be improved by allowing cookies. Read
Cookie Policy
Reject
Allow cookies