ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
Passing an object using copy constructor and pass by value are same.
Correct Answer: A — False
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.