ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
The copy constructors can be used to ________
Correct Answer: B — Copy an object so that it can be passed to a function
When an object is passed to a function, actually its copy is made in the function. To copy the values, copy constructor is used. Hence the object being passed and object being used in function are different.