The variables which are associated with function name during function call are called _________.
-
local variables
-
formal variables
-
global variables
-
actual variables
D
Correct answer
Explanation
The variables passed to a function during a function call are called actual parameters (or actual arguments). They are the values or expressions provided by the caller. Formal parameters are the variables declared in the function definition that receive these values. Local and global variables are storage duration specifiers, not call-related terms.