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
Which method cannot be overridden?
Why is oop useful?
Which is better struts or spring?
What do you mean by Encapsulation?
What are the two different types of polymorphism?
Can private class be inherited?
Explain the concepts involved in Object Oriented programming.
What is difference between inheritance and polymorphism?
What is the diamond problem in inheritance?
What are the 4 main oop principles?
What do you mean by overloading?
What is overloading in oops?
What are two types of polymorphism?
Can we override main method?
What is difference between abstraction and encapsulation?