What is multiple inheritance?

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


Please Help Members By Posting Answers For Below Questions

What is the types of inheritance?

604


What is overloading in oops?

598


Write a c++ program to display pass and fail for three student using static member function

2816


What is multilevel inheritance?

727


What is an example of genetic polymorphism?

651






What is and I oop mean?

622


Can we define a class within the interface?

555


Is enum a class?

607


What are the data types in oop?

608


Why is encapsulation used?

577


What is polymorphism programming?

605


What is polymorphism what is it for and how is it used?

576


String = "C++ is an object oriented programming language.An imp feature of oops is classes and objects".Write a pgm to count the repeated words from this scenario?

1944


Explain the advantages of inheritance.

675


What is abstract class in oops?

600