Home » C++ Programming » Questions and Answers » Question
  1. What do all STL containers define?
    1. Begin methods
    2. End methods
    3. Iterator types
    4. All of above
    5. None of these
Correct Option: D

All the STL containers define the iterator types for that container, e.g., iterator and const_iterator, e.g., vector::iterator and the begin/end methods for that container, e.g., begin() and end().



Your comments will be displayed only after manual approval.