InterviewSolution
Saved Bookmarks
| 1. |
Which of these class object uses the key to store value?(a) Dictionary(b) Map(c) Hashtable(d) All of the mentioned |
|
Answer» Right choice is (d) All of the mentioned To explain I would say: Dictionary, Map & Hashtable all implement Map interface hence all of them uses keys to store value in the object. |
|