Q.1.

Reserving memory during program execution is known as reserving it

Q.2.

If a class 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.3.

Assume that a program creates and initializes a Short Integer variable named age and a pointer named agePtr, to which it assigns the address of the age variable. Which of the following statements will assign the numberto the age variable?

Q.4.

Which of the following control structures is used in every program?

Q.5.

The loosest type of coupling is

Q.6.

You can pass _____ to functions

Q.7.

A function's purpose is to print customer data. Which of the following is the best name for this function?

Q.8.

The declaration section holds

Q.9.

Which of the following operators is the equality operator?

Q.10.

To create a variable, you must assign _____ to it

Q.11.

An identifier in C

Q.12.

A(n) _____ is always incremented by a constant amount, whereas a(n) _____ is incremented by an amount that varies

Q.13.

Which of the following pairs of identifier name(s) are(is) considered to be identical?

Q.14.

In C++, a function contained within a class is called

Q.15.

Which loop always processes its instructions at least once?

Q.16.

The number of the relational operators in the C language is

Q.17.

Modules in C++ programs are

Q.18.

The best functions have _____

Q.19.

The weakest form of cohesion is

Q.20.

The statement fwrite ( (char*)&objl, sizeof(objl) );

Q.21.

In the C language, a string is assigned to the

Q.22.

Which of the following is a string literal constant?

Q.23.

Variables that are known only to the function in which they are declared are called _____ variables

Q.24.

A function whose purpose is to send messages to other functions is known as a _____

Q.25.

Element doubleArray[is which element of the array?

Q.26.

The function strcmp("Jose", "JOSE") will return _____

Q.27.

Which of the following assigns the number 5 to the area variable?

Q.28.

When the compiler cannot differentiate between two overloaded constructors, they are called

Q.29.

The items listed in the function header are called _____

Q.30.

A derived class _____ override attributes of a parent class

Q.31.

In C++, you use _____ to perform standard input and output operations

Q.32.

You indicate a variable is a pointer variable by placing a(n) _____ in front of the variable's name

Q.33.

Which of the following creates a String named constant called partNo, whose value is AB45?

Q.34.

The C++ _____ function generates random numbers

Q.35.

When you create a derived class and instantiate on object

Q.36.

Which of the following statements will create and initialize a feelnfo array named fee?

Q.37.

When a new class is derived from an existing class, the derived class member functions _____ have names that differ from base class function names

Q.38.

Which of the following tells C++ to display numbers with two decimal places?

Q.39.

The return type for all destructors is

Q.40.

The 'continue' statement is used to

Q.41.

The body of a C++ function is surrounded by _____

Q.42.

The return type you code for all constructors is _____

Q.43.

When a language has the capability to produce new data types, it is said to be

Q.44.

Errors in a program are called

Q.45.

Which of the following statements declares a one-dimensional Character array named item that consists of five elements?

Q.46.

Which of the following, if any, are valid names for variables?

Q.47.

In the expression p --> val,p is a(n)

Q.48.

With commercial classes, the function source code is usually________

Q.49.

A pointer to void can hold pointers to

Q.50.

A base class may also be called a