sivaramakrishnan


{ City } bangalore
< Country > india
* Profession * software engineer
User No # 46551
Total Questions Posted # 0
Total Answers Posted # 2

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 11
Users Marked my Answers as Wrong # 0
Questions / { sivaramakrishnan }
Questions Answers Category Views Company eMail




Answers / { sivaramakrishnan }

Question { 13922 }

What do you mean by pure virtual functions?


Answer

Pure Virtual function is virtual function with expression
equal to zero.
eg
virtual void funct1()=0;

Is This Answer Correct ?    4 Yes 0 No

Question { Softvision Solution, 22399 }

What is multiple inheritance ?


Answer

Inheritance is the process of creating new class called
derived from the existing or base class.
A derived class with more than one base class is known as
multiple inheritance.

Real time example: A children inherits features from both
father(base1) and mother(base2)

Is This Answer Correct ?    7 Yes 0 No