Java Collections:
Going for an Job Interview? be prepared with Java Collections framework. Java Collection framework is the most preferred topic by interviewers. It gives them the idea of how much effort the interviewee as taken to understand this framework and clear the interview.
And guess what, similar questions are now also asked in US for H1B visa holders, or MS post graduates looking for job.
This blog explains internal working of the Collection framework. For Interview Question on Collection refer Java Collection Interview Questions.
For Java Interview questions for 2 to 5 years Senior Developer refer this blog.
Recently Blockchain has also made place in Java Interviews. Blockchain internally is also a Data Structure. To know more click here : Implementing Blockchain using Java
Click Here for Core Java Objective Questions and Answers
Custom implementation of Collections and Data Structure:
Java Collection internally uses the primitive and core elements like Arrays and datastructures like Linked List, Tree etc. So if you are asked a question to explain the internal working of any of the Collection classes, don't be surprised. Be it an interview for an Junior Java developer or even for an Architect, Java Collection is always something that you will have on you plate.
Java provides many collection classes that can be used to store data. Knowing which collection class to use for best performance and optimum result is the key.
First the basics.
Below two image shows the complete hierarchy of interfaces and classes present in the Collection framework.
The Collections come in basic four flavors:
Lists : List of things ( Classes that implement List Interface)
Sets : Unique things ( Classes that implement Set Interface)
Maps : Things with unique id ( Classes that implement Map Interface)
Queues : Things arranged in order ( Classes that implement Queue Interface)
The blue ones are the Interfaces and the red ones are the implementation classes
Below is Map. A map is a special type of collection.
And guess what, similar questions are now also asked in US for H1B visa holders, or MS post graduates looking for job.
This blog explains internal working of the Collection framework. For Interview Question on Collection refer Java Collection Interview Questions.
For Java Interview questions for 2 to 5 years Senior Developer refer this blog.
Recently Blockchain has also made place in Java Interviews. Blockchain internally is also a Data Structure. To know more click here : Implementing Blockchain using Java
Click Here for Core Java Objective Questions and Answers
Custom implementation of Collections and Data Structure:
Internal Working of Arraylist
Internal Working of LinkedList
Internal Working of HashMap
Internal Working of TreeMap
Internal Working of LinkedList
Internal Working of HashMap
Internal Working of TreeMap
Java Collection internally uses the primitive and core elements like Arrays and datastructures like Linked List, Tree etc. So if you are asked a question to explain the internal working of any of the Collection classes, don't be surprised. Be it an interview for an Junior Java developer or even for an Architect, Java Collection is always something that you will have on you plate.
Java provides many collection classes that can be used to store data. Knowing which collection class to use for best performance and optimum result is the key.
First the basics.
Below two image shows the complete hierarchy of interfaces and classes present in the Collection framework.
Lists : List of things ( Classes that implement List Interface)
Sets : Unique things ( Classes that implement Set Interface)
Maps : Things with unique id ( Classes that implement Map Interface)
Queues : Things arranged in order ( Classes that implement Queue Interface)
The blue ones are the Interfaces and the red ones are the implementation classes
Below is Map. A map is a special type of collection.
Below table shows the different concrete classes implementing these interfaces
Maps
|
Sets
|
Lists
|
Queues
|
Utilities
|
---|---|---|---|---|
HashMap
|
HashSet
|
PriorityQueue
|
Collections
| |
Hashtable
|
LinkedHashSet
|
Vector
|
Arrays
| |
TreeMap
|
TreeSet
|
LinkedList
| ||
LinkedHashMap
|