Recursive call is also known as _______________
Recursive call is also known as _______________
Which function is provided by the C++, for reducing the function-call overhead?
Which function is provided by the C++, for reducing the function-call overhead?
How many storage classes specifies are offered by C++?
How many storage classes specifies are offered by C++?
There are how many ways to invoke a function in C++?
There are how many ways to invoke a function in C++?
A function in C++ that does not return a value is declared with ______________
A function in C++ that does not return a value is declared with ______________
A programmer can create custom header files that must be end with _______________
A programmer can create custom header files that must be end with _______________
Unary scope resolution operator is denoted by ______________
Unary scope resolution operator is denoted by ______________
Which from the following is used for invoking a function?
Which from the following is used for invoking a function?
To declare identifiers for variables and functions of static storage class, which keywords are used?
To declare identifiers for variables and functions of static storage class, which keywords are used?
An identifier's storage class determines ________________
An identifier's storage class determines ________________
Several functions of the same name can be defined, as long as they have different parameters, this called __________
Several functions of the same name can be defined, as long as they have different parameters, this called __________
Iteration uses a repetition structure whereas recursion uses _____________
Iteration uses a repetition structure whereas recursion uses _____________
In which circumstances the recursion function called __________?
In which circumstances the recursion function called __________?
A portion of a function prototype that includes the name of the function, and the types of its arguments called _____________
A portion of a function prototype that includes the name of the function, and the types of its arguments called _____________
For accessing a global variable when a local variable of the same name is in scope, C++ provides a ______________
For accessing a global variable when a local variable of the same name is in scope, C++ provides a ______________
Not initializing a reference variable will cause ______________
Not initializing a reference variable will cause ______________
An identifier's scope is ________________
An identifier's scope is ________________
Which operator is used for accessing global variables if the local variable of same name exists in the code?
Which operator is used for accessing global variables if the local variable of same name exists in the code?
Which from the following is not a storage class specifier in C++?
Which from the following is not a storage class specifier in C++?
A called function can return control to the caller if ______________
A called function can return control to the caller if ______________