What is multiple inheritance ?

Answer Posted / sri

Multiple Inheritance is that one derived class having more
than one base class.

C/C++ will support multiple inheritance.
Java does not support multiple inheritance.

Is This Answer Correct ?    23 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are different oops concepts?

775


write knight tour problem which is present in datastructure

2380


Can static class have constructor?

785


Why multiple inheritance is not possible?

794


What are the 5 oop principles?

839


Can destructor be overloaded?

795


Can you explain polymorphism?

823


Write a java applet that computes and displays the squares of values between 25 and 1 inclusive and displays them in a TextArea box

2272


What is Difference Between Inheritance and creating object and getting data? means Class A extends B{ B.getMethod();} (OR) Class A{ b obj=new B(); obj.getMethod(); }

2206


Why do we use polymorphism in oops?

782


IS IT NECESSARY TO INITIALIZE VARIABLE? WHAT IF THE INSTANCE VARIABLE IS DECLARED final ? IS IT NECESSARY TO INITIALIZE THE final VARIABLE AT THE TIME OF THEIR DECLARATION?

1811


Is oop better than procedural?

768


There are two base class B1,B2 and there is one class D which is derived from both classes, Explain the flow of calling constructors and destructors when an object of derived class is instantiated.

1704


What is the point of polymorphism?

767


What is for loop and its syntax?

800