There can be only one catch block in a program.
Specialized templates work with a specific data type.
STL algorithms are implemented as function templates.
Private members of a private base class become inaccessible to...
It isn't possible for a base class to have more than one...
The __________ block handles an exception.
Data may be passed with an exception by storing it in members of an...
Only one generic type may be used with a template.
The base class's access specification affects the way the derived...
Private members of a protected base class become inaccessible to the...
Pointers to a base class may be assigned the address of a derived...
When both a base class and a derived class have destructors, the base...
It is possible to overload two function templates.
A class template may not be used as a base class.
Protected members of a private base class become public members of the...
The base class constructor is called after the derived class...
The base class destructor is called after the derived class...
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
A base class may not be derived from another class.
When an exception is thrown, but not caught, the program ignores the...
Protected members of a public base class become public members of the...
In C++, a class can inherit from multiple base classes.
__________ binding is when a function call is bound at runtime....
A(n) __________ member function in a base class expects to be...
It is possible to overload a function template and an ordinary...
The __________ block contains code that directly or indirectly might...
Once an exception has been thrown, it is not possible for the program...
__________ is when member functions in a class hierarchy behave...
A member function of a derived class may not have the same name as a
...
A class object passed to a function template must overload any...
Public members of a private base class become private members of the...
Public members of a protected 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.
The __________ exception is thrown when the new operator fails to...
A(n) __________ of inheritance is where one class is derived from a...
The line containing a throw statement is known as the __________....
When defining objects of class templates, the __________ you wish to...
A(n) __________ container uses keys to rapidly access elements.
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...