Java / Collections
What is the difference between List and Set ?
Set can hold only unique elements where as List can contain duplicate elements.
Set is unordered while List is ordered; List maintains the order of object insertion.
More Related questions...