A function that calls itself for its processing is known as@Inline Function@Nested Function@Overloaded Function@Recursive Function@D@
We declare a function with ______ if it does not have any return type@long@double@void@int@C@
Arguments of a functions are separated with@comma (,)@semicolon (@colon (@None of these@A@
Variables inside parenthesis of functions declarations have _____ level access.@Local@Global@Module@Universal@A@
Strings are character arrays. The last index of it contains the null-terminated character@\n@\t@\0@\1@C@
The keyword used to transfer control from a function back to the calling function is@switch@goto@go back@return@D@
When used inside a loop control structure,------- causes an immediate exit from the loop@continue@break@both of them@none of them@B@
function is written  ------ main program @inside @outside@ anywhere @ none of them@B@
Which of the following option is correct in c++@ value=x2+x+2 @ value=x*x+x+2 @ value=x*x+x+2; @none of these@C@
Which of the following classes handles file input?@ofstream@ifstream@instream@inputfile@A@
Which of the following is a complete function?@int funct();@int funct(int x) {return x=x+1;}@void funct(int) {cout<<"Hello"}@void funct(x) {cout<<"Hello"}@B@
Which of the following is a valid function call (assuming the function exists)?@funct;@funct(x,y);@funct();@int funct();@C@
What is the return type of the function with prototype: "int func(char x, float v, double t);"@char@int@float@double@B@
Which is not a proper prototype?@int funct(char x, char y);@double funct(char x)@void funct();@char x();@D@
Which functions will every class contain?@None@Constructor@Destructor@Both a constructor and a destructor@D@
"exit()" function is defined under the header file@iostream@conio@stdio@process@D@
In menu selection routine which conditional loop is used@while@do While@for@none@C@
Which of the following is not part of compiler@exit()@sqrt()@pow()@if()@D@
Function calls value from@sub function@Main function@both@none@B@
Which of the following function check whether a character is contained in a string or not@trunk()@min()@find-pos()@none@C@
The variables which declared at outer most block of a function have @local scop@function scop@file scop@class scop@B@
Which of the following is not invoked by a function@call by value@call by refrence@call by type@None@C@
Is it necessary for a function to return a value@no@yes@depends@none@A@
