In which circumstances the recursion function called __________?
In which circumstances the recursion function called __________?
An identifier's storage class determines ________________
An identifier's storage class determines ________________
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 ______________
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 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?
Unary scope resolution operator is denoted by ______________
Unary scope resolution operator is denoted by ______________
Iteration uses a repetition structure whereas recursion uses _____________
Iteration uses a repetition structure whereas recursion uses _____________
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?
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 _____________
Which from the following is not a storage class specifier in C++?
Which from the following is not a storage class specifier in C++?
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 __________
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 _______________
A called function can return control to the caller if ______________
A called function can return control to the caller if ______________
There are how many ways to invoke a function in C++?
There are how many ways to invoke a function in C++?
Not initializing a reference variable will cause ______________
Not initializing a reference variable will cause ______________
Recursive call is also known as _______________
Recursive call is also known as _______________
Which from the following is used for invoking a function?
Which from the following is used for invoking a function?
An identifier's scope is ________________
An identifier's scope is ________________
How many storage classes specifies are offered by C++?
How many storage classes specifies are offered by C++?