List
List
- The list is an ordered type of collection framework i.e. we can perform an index-wise operation on the list.
- It allows duplicacy of elements.
- Here, the FIFO( First In First Out ) functionality works.
The three implementations of the List interface are:
- ArrayList
- LinkedList
- Vector