1List > Ordered and Indexed Collection, May contain duplicates
2Set > Collection of Unique values, not ordered, no indexing
3
1Set is unordered
2List is ordered collection,
3List allow duplicate elements
4Set does not allow duplicates.
5List can have multiple null elements
6Set will allow only one null element.
7The List can contain duplicate elements
8Set includes unique items.