Same common question what is Map,Set,HashMap,List????
Answers were Sorted based on User's Feedback
Answer / dsr
Map,set ,List are collection interfaces.
HashMap is a collection class.
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / punit pannu
collection API:- Collection is a interface which contains three sub-interfaces list set and queue sub-interfaces.
1.List sub-interface: it contains three concrete classes
Arraylist
Vector and
Linkedlist
2. Set sub-interface:- it contains two classes
HashSet
LinkedHashSet
and one interface- SortedSet which contains one concrete
class - TreeSet
3. Map interface: it contains three concrete classes
HashMap
HashTable
LinkedHashMap
and one sub-interface
SortedMap
which contains one concrete class
TreeMap.
| Is This Answer Correct ? | 4 Yes | 0 No |
Why do we need array in java?
What is meant by class loader? How many types are there?
What does flagged out mean?
what is difference between Exception and Error?
What are the uses of synchronized keyword?
How do I get the | symbol on my keyboard?
what are different ways in which a thread can enter the waiting state? : Java thread
What is Connection pooling? Explain Pros and Cons?
What are drawbacks of singleton class?
Is null a value?
what is the use of clone method? why user cant overwrite in sub class without its proper defination.
What is boolean logic?