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 causes polymorphism?

563


What is the oops and benefits of oops programming?

547


What are constructors in oop?

583


What is and I oop mean?

611


What are the three parts of a simple empty class?

1447






What is overriding in oops?

593


How do you achieve polymorphism?

606


What is byval and byref? What are differences between them?

1682


What are two types of polymorphism?

607


What type of loop is a for loop?

678


What is encapsulation with example?

570


What does <> mean pseudocode?

618


write a program using c++ to implement single contiguous memory mangement techniques.display the content of the main memory after yhe allocation of jobs and percentage of the wastage of the main memory

2750


Why is oop useful?

593


What does enum stand for?

605