CBSE Class 12 Computer Science Question 95 of 101

Functions — Question 7

Back to all questions
7
Question

Question 7

Parameters specified within a pair of parentheses in the function definition are the actual parameters or non-formal parameters.

Answer

False

Reason — Parameters specified within a pair of parentheses in a function definition are called formal parameters. These serve as placeholders for the values that will be passed to the function when it is called. Formal parameters are specified in the function definition and act as variables within the function's scope.