InterviewSolution
Saved Bookmarks
| 1. |
Which container is used to store elements as key-value pair?(a) map(b) multimap(c) unordered map(d) all of the mentioned |
|
Answer» Correct choice is (d) all of the mentioned Easy explanation - C++ provides these three containers(map, multimap and unordered map) to store elements as key-value pair. |
|