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
What is encapsulation in simple terms?
Is enum a class?
What is the point of polymorphism?
Explain the concepts involved in Object Oriented programming.
Why do we use polymorphism in oops?
What is destructor oops?
Prepare me a program for the animation of train
What is the purpose of enum?
How to hide the base class functionality in Inheritance?
What are properties in oop?
What is the difference between a mixin and inheritance?
How do you achieve runtime polymorphism?
What exactly is polymorphism?
What do you mean by overloading?
What is difference between data abstraction and encapsulation?