There can be only one catch block in a program.
Specialized templates work with a specific data type.
Private members of a private base class become inaccessible to...
STL algorithms are implemented as function templates.
It isn't possible for a base class to have more than one...
Only one generic type may be used with a template.
Data may be passed with an exception by storing it in members of an...
The __________ block handles an exception.
Private members of a protected base class become inaccessible to the...
The base class's access specification affects the way the derived...
Pointers to a base class may be assigned the address of a derived...
Protected members of a private base class become public members of the...
A class template may not be used as a base class.
The base class constructor is called after the derived class...
It is possible to overload two function templates.
When both a base class and a derived class have destructors, the base...
When defining an iterator from the STL, the compiler automatically...
When both a base class and a derived class have constructors, the base...
A class template may not be derived from another class template
The base class destructor is called after the derived class...
A base class may not be derived from another class.
Protected members of a public base class become public members of the...
In C++, a class can inherit from multiple base classes.
When an exception is thrown, but not caught, the program ignores the...
__________ binding is when a function call is bound at runtime....
It is possible to overload a function template and an ordinary...
A(n) __________ member function in a base class expects to be...
The __________ block contains code that directly or indirectly might...
__________ is when member functions in a class hierarchy behave...
Once an exception has been thrown, it is not possible for the program...
A class object passed to a function template must overload any...
A member function of a derived class may not have the same name as a
...
Public members of a protected base class become private members of the...
Public members of a private base class become private members of the...
All type parameters defined in a function template must appear at...
In multiple inheritances, the derived class should always __________ a...
In the function template definition, it is not necessary to use each...
__________ is where a derived class has two or more base classes.
The compiler creates an instance of a function template in memory as...
__________ are pointer-like objects used to access data stored in a...
__________ binding is when the compiler binds member function calls at...
The base class's access specification affects the way base class...
A(n) __________ function has no body, or definition, in the class in...
A derived class inherits the __________ of its base class.
A(n) __________ template works with a specific data type.
A(n) __________ of inheritance is where one class is derived from a...
The __________ exception is thrown when the new operator fails to...
The line containing a throw statement is known as the __________....
A(n) __________ container uses keys to rapidly access elements.
When defining objects of class templates, the __________ you wish to...
When a pointer to a base class is made to point to a derived class,...
An overridden base class function may be called by a function in a...
A(n) __________ container organizes data in a sequential fashion...
The beginning of a template is marked by a(n) __________.
When a derived class redefines a function in a base class, which...
A(n) __________ class cannot be instantiated.
When writing function or class templates, you use a(n) __________ to...