A(n) _________ is information that is passed to a function, and a(n) _________ is information that is received by a function. Group of answer choices function call, function header parameter, argument argument, parameter prototype, header

Respuesta :

Answer: The information that is passed to a function is called an Argument while the information that is received by a function is called a parameter.

Explanation: In programming, an argument is a value, or reference to a value, passed to a function.

While a parameter is an input variable of a procedure definition, that gets(receives) an actual value at execution time.