Loading practice questions
Passing an object using copy constructor and pass by value are same.
Correct Answer: A — False
Explanation:
The copy constructor is used to copy the values from one object to other. Pass by values is not same as copy constructor method. Actually the pass by value method uses a copy constructor to copy the values in a local object.