Q.1.

Some Streams work with input, and some with output

Q.2.

A translator that notes whether you have used a language correctly may be called a _____

Q.3.

In object-oriented terms, an exception may be considered a(n) _____

Q.4.

Values that are used to end loops are referred to as _____ values

Q.5.

A function can make_________

Q.6.

The bitwise AND operator is represented by the symbol

Q.7.

The int type of constants are whole numbers in the range

Q.8.

Which of the following is the scope resolution operator?

Q.9.

The 'break' statement is used to exist from

Q.10.

Which of the following type casts will convert an Integer variable named amount to a Double type?

Q.11.

When an object-oriented program detects an error within a function, the function _________

Q.12.

A compound statement does not consist of

Q.13.

If you declare two objects as Customer firstCust, secondCust; which of the following must be true?

Q.14.

A constructor always has

Q.15.

A derived class may also be called a

Q.16.

A child class _____ exist if there is no parent class

Q.17.

In a template function, _____ argument is generic, or parameterized

Q.18.

The type of value that a function sends back to the function that calls it is known as its _____

Q.19.

Which of the following is the extraction operator?

Q.20.

The _____ mode tells C++ to open a file for input

Q.21.

If you design a class that needs special initialization tasks, you will want to design a(n) _____

Q.22.

The feature in object-oriented programming that allows the same operation to be carried out differently, depending on the object, is_____

Q.23.

Which of the following flowchart symbols represents the if selection structure?

Q.24.

A default exception block must be placed _____

Q.25.

The exclusive OR operator gives the result 1 when

Q.26.

Using a statement at the wrong time or with an inappropriate object creates a

Q.27.

The outline or the definition of a function is called its

Q.28.

Which of the following statements will display the word "Hello" on the computer screen?

Q.29.

Which of the following is the inequality operator?

Q.30.

A normal C++ operator that acts in special ways on newly defined data types is said to be

Q.31.

The main() function is always

Q.32.

Object-oriented programmers primarily focus on _________

Q.33.

Assume that a program includes the short *agePtr = NULL; statement. The name of the pointer is _____

Q.34.

The function whose prototype is void getData(Item &thing); receives

Q.35.

Using the wardrobe structure within the ShopList structure is an example of a good programming principle, known as _____

Q.36.

Which type of statement does not occur in computer programs?

Q.37.

When an argument is passed by reference,

Q.38.

To send output to a file, you need to include the _____ header file in your program

Q.39.

When you create a derived class and instantiate an object _____

Q.40.

A function can

Q.41.

Which of the following is false?

Q.42.

The prototype for a derived class constructor may include arguments for

Q.43.

You typically initialize a String variable to _____

Q.44.

If you create an instantiation of a class template with an int, and then create a second instantiation with a double, then

Q.45.

The preprocessor directive always starts with the symbol

Q.46.

If a derived class uses the public access specifier, then _____

Q.47.

A function in a derived class that has the same name as a function in the parent class

Q.48.

You define a structure type globally because

Q.49.

Which of the following are never inherited?

Q.50.

The newline character is always included between