Computer Applications

In which technique are the values of actual parameters copied to the formal parameters?

  1. Call by reference
  2. Call by value
  3. Call by argument
  4. Call by method

User Defined Methods

11 Likes

Answer

Call by value

Reason — In call by value, the actual parameters are copied to formal parameters. Any changes to formal parameters are not reflected onto the actual parameters.

Answered By

5 Likes


Related Questions