In this video, you can understand:
List Interface
1. List uses the indexing concept
2. Duplicate data can be added
3. Multiple null values can be store
4. List maintains insertion order
Set Interface
1. Set uses hashcode concept
2. Duplicate data can not be stored.
3. Only a single null value can be stored
4. Set can not maintain insertion order