Classes

The copy constructor of class Money is called in which of the following cases?
Choose one answer.

a. Money amount1;
Money amount2(amount 1);

b. void func(Money amount);
[...]
Money amount1;
[...]
func(amount1);

c. Money func();
[...]
Money amount1 = func();

d. all of the above

Questions by samah74

Showing Answers 1 - 9 of 9 Answers

jaroo

  • Oct 2nd, 2011
 

The correct answwer is:

"D. all of the above"

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions