InterviewSolution
Saved Bookmarks
| 1. |
What are the different interfaces are there in Collection framework? |
Answer»
List is a collection of unordered elements. It contains duplicate elements also.
Set is a collection of ORDERED elements. It doesn’t contain any duplicate elements.
Queue interface available in java.util package and EXTENDS Collection interface
Map is a collection of (key,value) PAIR. |
|