Multiple choice technology programming languages

Using pointers to call a function is called as:

  1. call by reference

  2. call by value

  3. call by address

  4. All the above

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

Using pointers to pass arguments to a function simulates passing by reference because it allows the function to modify the actual arguments in the caller's scope. Call by value copies the actual data, whereas call by address is a synonym but call by reference is the standard curriculum terminology.