Home » C++ Programming » Questions and Answers » Question
  1. How the list containers are implemented?
    1. Using Single linked list
    2. Using Double linked list
    3. Using Single & Double linked list
    4. All of above
    5. None of these
Correct Option: B

List containers are implemented as doubly-linked lists. Doubly linked lists can store each of the elements they contain in different and unrelated storage locations.



Your comments will be displayed only after manual approval.