119k views
1 vote
____________________ parameters are useful in three situations: • When the value of the actual parameter needs to be changed • When you want to return more than one value from a function • When passing the address would save memory space and time relative to copying a large amount of data

1 Answer

2 votes

Answer:

The correct word for the blank space is: Reference.

Step-by-step explanation:

In C++, Reference Parameter is a type of parameter that does not need additional storage since it represents an already existing function. The function has the characteristic of passing more than one (1) variable. Reference parameters are also used to edit the existing parameter or when referencing a function saves storage compared to creating a new function.

User Artem Vasilev
by
4.3k points