Multiple choice technology programming languages

Pass by reference and Pass by address are same in C++.

  1. True

  2. False

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

Pass by reference in C++ uses reference variables (using & in the parameter list) which act as aliases without explicit pointer dereferencing syntax, whereas pass by address passes pointer values that must be explicitly addressed and dereferenced. They are distinct concepts and mechanisms.