Q.1.

The process of extracting the relevant attributes of an object is known as

Q.2.

A C++ _____ is a program that runs in a DOS window

Q.3.

Evaluate the following expression: 4 >6 ||< 2 * 6

Q.4.

The #ifndef directive tests to see whether ________

Q.5.

Which of the following is(are) invalid string constant(s)?

Q.6.

To be called object-oriented, a programming language must allow

Q.7.

The statement float values[]={3.-7.36.4.87};

Q.8.

A function stub typically contains

Q.9.

Overloading involves writing two or more functions with ________

Q.10.

The set of instructions for how to tie a bow is an example of the _____ structure

Q.11.

The step-by-step instructions that solve a problem are called _____

Q.12.

Which of the following statements is true?

Q.13.

The operator that releases previously allocated memory is _____

Q.14.

In which statements, does a 'continue' statements cause the control to go directly to the test condition and then continue the looping process?

Q.15.

Sending a copy of data to a program module is called _______

Q.16.

The best form of coupling is _____

Q.17.

A difference, between reference variables and pointers is that

Q.18.

To expose a data member to the program, you must declare the data member in the _____ section of the class

Q.19.

You can use C++ as a procedural, as well as an object-oriented, language

Q.20.

Which of the following statements is false?

Q.21.

Evaluate the following expression: 7 >=3 + 4 || 6<4 && 2<5

Q.22.

You define a structure type globally because _____

Q.23.

A function that returns no values to the program that calls it is _____

Q.24.

A constructor initialization list is preceded by _____

Q.25.

A variable's _____ indicates which portions of the program can use the variable

Q.26.

You___________overload function templates

Q.27.

If no exception is thrown ________

Q.28.

The type to be used in an instantiation of a class template follows ________

Q.29.

Which of the following statements is false?

Q.30.

Of the three ways to pass arguments to functions, only passing by _____ and passing by _____ allow the function to modify the argument in the calling program

Q.31.

Paying attention to the important properties while ignoring inessential details is known as________

Q.32.

A 'C function does not contain

Q.33.

Evaluate the following expression: 3 >6&&7>4

Q.34.

A default catch block catches

Q.35.

Which of the following can be used to declare the main function?

Q.36.

Which of the following statements uses the computer's clock to initialize the random number generator?

Q.37.

In a class specifier, data or functions designated private are accessible

Q.38.

The generic type in a template function

Q.39.

The base class for most stream classes is the _____ class

Q.40.

Overloaded functions are required to

Q.41.

The keyword used to define a structure is _____

Q.42.

When the compiler places a copy of a small function's statements directly into a program, the function is said to be _____

Q.43.

If an integer object is thrown with a throw statement, then a subsequent catch block has a usable match if the type of the catch argument is _____

Q.44.

You typically initialize Character variables to _____

Q.45.

A program that predicts the exact sequence in which events will take place is said to be ________

Q.46.

Which of the following statements allows the user to enter data at the keyboard?

Q.47.

To use either an input or output file, the program must include the _____ header file

Q.48.

What does C++ append to the end of a string literal constant?

Q.49.

When you omit parameters from a function call, values can be provided by

Q.50.

_____ variables remain in memory until the program ends