main() base da; derv1 d1; derv2 d2; printf("%d %d %d",da.function1(),d1.function1(),d2.function1()); Output is: A. 100,200,200; B. 200,100,200; C. 200,200,100; D. None of the above

Showing Answers 1 - 4 of 4 Answers

V Shashi Bhushan

  • Aug 20th, 2005
 

Answer is A.  
 
da.function1() = 100 
d1.function1() = 200 
d2.function1() = 200  

  Was this answer useful?  Yes

divya

  • Jul 14th, 2006
 

Can anyone explain How its 100 200 100

  Was this answer useful?  Yes

sreekanth

  • Jul 24th, 2006
 

Answer is none ....

the correct answer ia 100 200 100

  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