A reference parameter differs from an output parameter in that a reference parameter ______________________ but an output parameter does not. receives a memory address must be a simple data type occupies a unique memory address requires an initial value

Respuesta :

Answer:

Receives a memory address

Explanation:

A reference parameter is a reference to the address of a variable, not to the value itself. In a function, the data passed so that the function acts on it can be a reference to the address, and the reference access the actual variable value to be used as an argument in the function. when the reference is passed a new memory address is not created, but it just refers to the address of the value to be used as an argument.

ACCESS MORE