1,217 views
7 votes
7 votes

In programming language terminology, $\text{ call by value }$ refers to the fact that:

  1. A function call can return a value.
  2. When a function is called, arguments are copied into local storage.
  3. Functions can indirectly modify the value of external variables.
  4. Every argument passed to a function must have a value.

1 Answer

Best answer
5 votes
5 votes
B) When a function is called, arguments are copied into local storage.

In call by value , a copy of variable send from where it is called and those are local to the calling function
edited by

Related questions

5 votes
5 votes
1 answer
1