What is shared inheritance

Answers were Sorted based on User's Feedback



What is shared inheritance..

Answer / kiruthika.d

The mechanism of deriving a new class from an existing class
is called inheritance. Shared inheritance introduces a new
opportunity of ambiguity and additional implementation
complexity. Assume D inherits from B and C, both of which
inherits from A. Here A in shared. Single copy made from
both derived classes is called shared inheritance.

Is This Answer Correct ?    8 Yes 3 No

What is shared inheritance..

Answer / jawahar

inheritance means using the some of properties of
superclass in the subclass..Something like method and
functions and member functions.

Is This Answer Correct ?    5 Yes 5 No

What is shared inheritance..

Answer / vasu

it is mulitiple times using same class

Is This Answer Correct ?    5 Yes 6 No

Post New Answer

More C Sharp Interview Questions

If we write a goto or a return statement in try and catch block will the finally block execute?

6 Answers  


how encapsulation is implemented in c#

0 Answers   Cognizant,


What is int32?

0 Answers  


What is private constructor c#?

0 Answers  


What are the types of constructors?

0 Answers  


1) how to delete duplicate records from table in sql server 2005 2) what is run time polymorphism

4 Answers   HCL, IBM, L&T,


Explain Constructor and destructor?

0 Answers  


what are the contents of an assembly ?

0 Answers  


Does c# support multilevel inheritance?

0 Answers  


What is short in c#?

0 Answers  


If there are 2 interface IParentInterface & IChildInterface as follows. interface IParentInterface { void InterfaceMethod(); } interface IChildInterface : IParentInterface { void InterfaceMethod(); } Both the interface contains method with same name InterfaceMethod(). How InterfaceMethod() will be handled in IChildInterface as its deriving IParentInterface

3 Answers  


What is a data set in c#?

0 Answers  


Categories