What are the types of STL containers?

Answers were Sorted based on User's Feedback



What are the types of STL containers?..

Answer / pavan kumar

Sequence Containers
- deque
- list
- vector

Associative Containers
- map (multimap)
- set (multiset)

Container Adapters
- priority_queue
- queue
- stack

Is This Answer Correct ?    24 Yes 1 No

What are the types of STL containers?..

Answer / saroj das ,

containers are objects that hold other object . there are
different type vector, dequeue,list, map etc...

Is This Answer Correct ?    11 Yes 4 No

What are the types of STL containers?..

Answer / pradeep

Sequence Containers
- deque
- list
- vector

Associative Containers
- map (multimap)
- set (multiset)

Container Adapters
- priority_queue
- queue
- stack

Is This Answer Correct ?    1 Yes 0 No

What are the types of STL containers?..

Answer / satheeshkumar

all the answer correct

Is This Answer Correct ?    4 Yes 4 No

Post New Answer

More C++ General Interview Questions

What is the average salary of a c++ programmer?

0 Answers  


catch(exception &e) { . . . } Referring to the sample code above, which one of the following lines of code produces a written description of the type of exception that "e" refers to? a) cout << e.type(); b) cout << e.name(); c) cout << typeid(e).name(); d) cout << e.what(); e) cout << e;

2 Answers   Quark,


What is input operator in c++?

0 Answers  


What is difference c and c++?

1 Answers  


What is Virtual Inheritance?

7 Answers   Amazon, Wipro,






What language is a dll written in?

0 Answers  


when can we use virtual destructor?

7 Answers   HCL, HP, Virage Logic,


What is the best c++ book for beginners?

0 Answers  


What are the basics of local (auto) objects?

0 Answers  


Differentiate between an array and a list?

0 Answers  


Write a C++ program to sort digits of all the 4 digit number and display the sorted 4 digit number

1 Answers   TATA, TCS,


How can you quickly find the number of elements stored in a dynamic array?

0 Answers  


Categories