Answer Posted / kaush
when one one class(derived class) inherit from more than one
class(base class) then it is called multiple inheritance.
like as,,
class program
{
class a
{
}
class b
{
}
class c:a,b
{
}
}
but in c# multiple inheritance not allowed.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Why is object oriented programming so hard?
How to improve object oriented design skills?
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(); }
#include
What is object-oriented programming? Webopedia definition
What is the purpose of enum?
What is abstraction encapsulation?
What is the benefit of oop?
What are oops functions?
Why multiple inheritance is not allowed?
Describe these concepts: Polymorphism, Inheritance and Abstraction.
What is a superclass in oop?
Where You Can Use Interface in your Project
What is polymorphism and why is it important?
What is the difference between abstraction and polymorphism?