C++ Collections based questions and answers

What are Vectors and Deques? - Vector is one type of standard container provided by C++ library...
Vector vs. deques - Vector supports dynamically expandable array....
What are Iterators? - Iterators are the glue that hold the container and algorithms together....
What are Lists? - List class supports a bidirectional linear list. Unlike a vector, which supports random access....
What are associate containers? - Containers are objects that hold other objects. An associative container stores pair of values...
What is stream iterator? - Iterators are the glue that hold the container and algorithms together...