Q.1.
Copy constructor is a constructor which ________________
Q.2.
The copy constructor can be used to ____________
Q.3.
If two classes have exactly same data members and member function and only they differ by class name. Can copy constructor be used to initialize one class object with another class object?
Q.4.
The copy constructors can be used to ________
Q.5.
Which returning an object, we can use ____________
Q.6.
If programmer doesn’t define any copy constructor then _____________
Q.7.
If a class implements some dynamic memory allocations and pointers then _____________
Q.8.
What is the syntax of copy constructor?
Q.9.
Object being passed to a copy constructor ___________
Q.10.
Out of memory error is given when the object _____________ to the copy constructor.
Q.11.
Copy constructor will be called whenever the compiler __________
Q.12.
The deep copy is possible only with the help of __________
Q.13.
Can a copy constructor be made private?
Q.14.
The arguments to a copy constructor _____________
Q.15.
Copy constructors are overloaded constructors.