Multiple choice

Which collection class allows you to access its elements by associating a key with an element's value, and provides synchronization?

  1. java.util.SortedMap

  2. java.util.TreeMap

  3. java.util.TreeSet

  4. java.util.Hashtable

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Hashtable is the only class listed that provides synchronized methods. If you need synchronization great; otherwise, use HashMap, it's faster.