image not found

Oops! That page can't be found.


Directions to Solve

Which of phrases given below each sentence should replace the phrase printed in bold type to make the grammatically correct? If the sentence is correct as it is, mark 'E' as the answer.

Q1: I have got some tea, but I do not have a sugar.

A some

B any

C No correction required

D got

E more

Q2: Is it true that a global variable may have several declarations, but only one definition?

A No

B Yes

Q3: Which of the following statement will be correct if the function has three arguments passed to it?

A The trailing argument will be the default argument.

B The first argument will be the default argument.

C All the argument will be the default argument.

D The middle argument will be the default argument.

Q4: Which of the following statement is incorrect?

A A function can have all its arguments as default.

B Default arguments can be provided for pointers to functions.

C Default argument cannot be provided for pointers to functions.

D A default argument cannot be redefined in later declaration.

Q5: Which of the following statement is correct?

A Constructors cannot have more than one default parameter.

B Constructors can have default parameters.

C Constructors cannot have default parameters.

D Constructors can have at most five default parameters.

Q6: Which of the following function / type of function cannot be overloaded?

A Both B and C

B Static function

C Member function

D Virtual function

Q7: Which of the following function declaration is/are incorrect?

A int Sum(int a, int b = 2, int c = 3);

B int Sum(int a = 0, int b, int c = 3);

C Both B and C are incorrect.

D All are correct.

E int Sum(int a = 5, int b);

Q8: Which of the following statement is incorrect?

A The default arguments are given in the function prototype.

B The default arguments are given in the function prototype and should be repeated in the function definition.

C The default value for an argument can be a global constant.

D Compiler uses the prototype information to build a call, not the function definition.

Q9: Where the default value of parameter have to be specified?

A Function prototype

B Both B or C

C Function definition

D Function call

Q10: Which of the following statement is correct?

A Both A and B.

B C++ allows the redefinition of a default parameter.

C C++ does not allow the redefinition of a default parameter.

D The default value for an argument cannot be function call.