Multiple choice

In ___________ type of function call, the values of the variables in the main program get changed.

  1. Call by value

  2. Function overloading

  3. Call by reference

  4. Inline functions

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

In this method, the original copy of the variable is used by the function. Hence, any changes made to the variables are reflected in the main program.