9 Question test
Q1
Containers and iterators are class templates
False
True
Q2
The STL containers are classified into the following categories: sequence and associative.
True
False
Q3
Suppose vecList is a vector object. The expression vecList.capacity() returns the number of elements that can be currently added to vecList.
False
True
Q4
Doxygen is the...
standard C++ debugger
perfect optimisation tool.
standard tool for generating documentation from annotated C++ sources
the best compiler.
Q5
Doxygen generates the following outputs
Python
RTF
Word docx format
LaTex
CSS
HTML
Q6
The Boost C++ Libraries  are a collection
of modern libraries based on the C++ standard
of modern libraries based on the Python scripting language
of modern libraries based on the Java standard
none of the above
Q7
The Boost community emerged around 1998
True
False
Q8
Lists are sequence containers that allow non-contiguous memory allocation.
False
True
Q9
Vectors are same as dynamic arrays with the ability to resize itself automatically when an element is inserted or deleted, with their storage being handled automatically by the container.
False
True