1.

Difference Between Set And List?

Answer»

The most NOTICEABLE DIFFERENCES are :

  • Set is unordered collection where List is ordered collection based on zero based INDEX.
  • List allow duplicate ELEMENTS but Set does not allow DUPLICATES.
  • List does not prevent inserting null elements (as many you like), but Set will allow only one null element.

The most noticeable differences are :



Discussion

No Comment Found