Answer:
Argument
Explanation:
The function is the block of the statement which performs the special task.
when we define the function in the program then we have to call that function.
the syntax for defining the function:
type name(parameter_1, parameter_2,...){
statement;
}
the syntax for calling the function:
name( argument_1, argument_2,...);
Meaning of parameter and argument
The argument is used to send the value into the function definition. this can be passed by value or pass by reference.
The parameter is used to receive the value send by calling function.
Therefore, the answer is the Argument.