Difficulty: Easy
Correct Answer: java.util.Map
Explanation:
Introduction / Context:
This tests knowledge of the Map interface in the Java Collections Framework.
Concept / Approach:
Map defines methods to store key-value pairs, where keys are unique and values can be retrieved by keys.
Why Other Options Are Wrong:
Final Answer:
java.util.Map
Discussion & Comments