A data member holds a 1 or 0 depending on whether taxes have been paid. The best identifier for this member is _____
The switch variable can be of
Which of the following statements creates a named constant called driverAge whose value is 16?
The >> (extraction) operator stops reading characters from the keyboard as soon as the user _____
The function whose prototype is void getData(Item *thing); receives
A constructor initialization list produces similar results to
A program will have one function prototype for each function defined in the programmer-defined section of the program. (Assume that the programmer-defined section is located below the main function.)
To include the double quotes as part of the control string we use the symbol
The difference between a return and a throw is that _____
You can use the C++ _____ function to assign a value to a String variable
Which of the following is a valid condition for an if statement? (The condition should be both syntactically and logically valid.)
Any output manipulator function you create _____
Which of the following formulas can be used to generate random integers between 1 and 10?
An expression contains relational, assignment and arithmetic operators. In the absence of parentheses, the order of evaluation will be
The number of structures than can be declared in a single statement is
The rules of a programming language are called its _____
The C++ keyword for declaring a variable that contains a decimal point is _____
A pointer is
Inheritance is the principle that
A function that uses variable types is called __________
Assume a class Derv that is privately derived from class Base. An object of class Derv located in main() can access
Reference variables and const class members _____
Which functions do not have a this pointer?
In the statement template<class T>,
Variables that are declared in a block are known as _____ variables to that block
The standard input stream, which refers to the keyboard, is called
A C++ statement must end in a
Which is a good reason for passing a variable's address to a function?
A measure of the strength of the connection between two functions is
A pattern for creating an object is called a(n) _____
To pass an array by reference, you
Format flags may be combined using the _____
You have declared an integer pointer called point You have also declared an integer called number. Which statement is the correct format?
The keyword virtual indicates that
The cout << sales[+ sales[1]; statement will______
An array element is accessed using
Having more than one function with the same name is called
Which of the following is an access specifier?
You can code a default exception handler by creating a catch block
The null character is represented by
The pow and sqrt functions return a(n) _____ type number
You can throw _____
A static data member is given a value
If the code and fee arrays are parallel, the fee that corresponds to the code stored in the code[element is located in the _____ element
Local variables _____
Student senior(); is a(n)_________
One of the valid escape sequences used in the C language is
Programmer-defined functions can be
The string HELLO WORLD needs
If you want to override constructor default values for an object you are instantiating, you must also override