Answer Posted / beena
An object can carry out copying in two ways i.e. it can set itself to be a copy of another object, or it can return a copy of itself. The latter process is called cloning.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Array base access faster or pointer base access is faster?
What is type of 'this' pointer?
What is do..while loops structure?
What are the basics of local (auto) objects?
Define upcasting.
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
Name the debugging methods that are used to solve problems?
How do you establish a has-a relationship?
What is a multiset c++?
Can a program run without main in c++?
Why is c++ is better than c?
What is the arrow operator in c++?
If you push the numbers (in order) 1, 3, and 5 onto a stack, which pops out first a) 1 b) 5 c) 3
What is a class template in c++?
Eplain extern keyword?