Art, asked by Anonymous, 1 month ago

what is call by value explain ?/

Answers

Answered by anshuman004
1

Answer:

In Call by value, a copy of the variable is passed whereas in Call by reference, a variable itself is passed.

Answered by CopyThat
8

Answer :-

Call-by-value:-

  • When you p@ss parameters to a method by value, the method copies the value of the actual parameters to formal parameters. It creates its own copy of argument values and then uses them in the method.
Similar questions