Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

In how many ways we can initialize an int variable in C++?

1 Answers  


What is the difference in size of this two clasees? Class A { int a; char c; float f; } Class B { float f; char c; int a; }

4 Answers  


I was a c++ code and was asked to find out the bug in that. The bug was that he declared an object locally in a function and tried to return the pointer to that object. Since the object is local to the function, it no more exists after returning from the function. The pointer, therefore, is invalid outside.

0 Answers  


What are virtual functions in c++?

0 Answers  


Who discovered c++?

0 Answers  


Show the declaration for a pointer to function returning long and taking an integer parameter.

0 Answers  


Can a program run without main function?

0 Answers  


What are the differences between malloc() and calloc()?

0 Answers  


What is the role of copy constructor in copying of thrown objects?

0 Answers  


Assume studentNames and studentIDs are two parallel arrays of size N that hold student data. Write a pseudocode algorithm that sorts studentIDs array in ascending ID number order such that the two arrays remain parallel.

0 Answers  


What is c++ good for?

0 Answers  


How does java differ from c and c++?

0 Answers  


Categories