The basic interfaces of java collection framework are:
Collection -Collection is the root of the collection hierarchy. It
declares the core methods that all collections will have.
Set - HashSet, LinkedHashSet classes implements this interface as
it declare common method.
List - ArrayList, LinkedList, Vector classes implements this
interface as it declare common method
Map - Hashtable, LinkedHashMap classes implements this interface as
it declare common method
SortedSet - TreeSet Class implements this interface to pre-sort its
elements.
SortedMap - TreeMap class implements this interface to pre-sort its
emenets.
Some other interfaces are Queue, Dequeue, Iterator, and ListIterator.
Core Java Interview Questions
Object Oriented Programming(OOP) Questions and Answers
Collections Interview Questions
Java Exceptions Interview Questions
Java Threads Interview Questions
Collection framework in java interview questions
oops concepts with example in java
Java Serialization Interview Questions
Top 20 Core Java Interview Questions with Answers
String Interview Question in java With Example
synchronization interview questions
Java Reflection Interview question
Java Executor Framework (JDK 1.5) Interview Questions
JDK 1.7 interview Questations and Answers
Java I/O interview question with example