What is the difference between `HashSet` and `LinkedHashSet`?
-
A
LinkedHashSet is sorted; HashSet is not
-
B
LinkedHashSet maintains insertion order; HashSet does not
-
C
HashSet allows duplicates; LinkedHashSet does not
-
D
LinkedHashSet is synchronized; HashSet is not