What information can an exception contain?
What are the steps in the development cycle?
How do you compile the source code with your compiler?
What are the two types of comments, and how do they differ?
If there are two catch statements, one for base and one for derived, which should come first?
If a function doesn’t return a value, how do you declare the function?
If dog is a friend of boy, and terrier derives from dog, is terrier a friend of boy?
What is the difference between the parameter to a template and the parameter to a function?
How many static variables are created if you put one static member into a template class definition?
When is the copy constructor called?
What does new return if there is insufficient memory to make your new object?
How do you establish a has-a relationship?
Show the declaration for a pointer to function returning long and taking an integer parameter.
Is it legal in c++ to overload operator++ so that it decrements a value in your class?
How do you invoke a base member function from a derived class in which you have not overridden that function?