Google News
logo
CPP - Quiz(MCQ)
What are the formal parameters in C++?
A)
Parameters which are used in the definition of the function
B)
Variables that are never used in the function
C)
Parameters with which functions are called
D)
Variables other than passed parameters in a function

Correct Answer :   Parameters which are used in the definition of the function


Explanation : Formal parameters are those which are used in the definition of a function. They are the parameters that represent the actual parameters passed and they are the one which is used inside the function.

Advertisement