Multiple choice

When we pass arguments by reference, the formal arguments in the called function become aliases to the actual arguments in the calling function.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Passing by reference creates a direct link between the formal parameter and the actual argument. Any changes made to the formal parameter inside the function directly affect the original variable.