InterviewSolution
Saved Bookmarks
| 1. |
How many Sequence Containers are provided by C++?(a) 2(b) 3(c) 4(d) 5 |
|
Answer» Correct choice is (d) 5 The explanation is: C++ provides 5 types of Sequence Containers namely array, vector, deque, forward_list and list. |
|