InterviewSolution
Saved Bookmarks
| 1. |
How many types of Iterators are provided by C++?(a) 2(b) 3(c) 4(d) 5 |
|
Answer» Right option is (d) 5 Explanation: There are five types of Iterators provided by C++ namely Input Iterators, Output Iterators, Forward Iterators, Bi-directional Iterators and Random-access Iterators. |
|