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
What are different oops concepts?
write knight tour problem which is present in datastructure
Can static class have constructor?
Why multiple inheritance is not possible?
What are the 5 oop principles?
Can destructor be overloaded?
Can you explain polymorphism?
Write a java applet that computes and displays the squares of values between 25 and 1 inclusive and displays them in a TextArea box
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(); }
Why do we use polymorphism in oops?
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?
Is oop better than procedural?
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.
What is the point of polymorphism?
What is for loop and its syntax?