KnowledgeBoat Logo
|

Computer Science

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

Python Functions

3 Likes

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.

Answered By

1 Like


Related Questions