Home » JAVA Programming » Collections » Question
  1. Which of the below does not implement Map interface?
    1. Hashtable
    2. HashMap
    3. Vector
    4. EnumMap
    5. None of these
Correct Option: C

Vector implements AbstractList which internally implements Collection. Others come from implementing the Map interface.



Your comments will be displayed only after manual approval.