What is shared inheritance
Answers were Sorted based on User's Feedback
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 |
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 |
If we write a goto or a return statement in try and catch block will the finally block execute?
how encapsulation is implemented in c#
What is int32?
What is private constructor c#?
What are the types of constructors?
1) how to delete duplicate records from table in sql server 2005 2) what is run time polymorphism
Explain Constructor and destructor?
what are the contents of an assembly ?
Does c# support multilevel inheritance?
What is short in c#?
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
What is a data set in c#?