What is Inheritance, Multiple Inheritance, Shared and
Repeatable Inheritance?
Answers were Sorted based on User's Feedback
The mechanism of deriving a new class from an old one is
called inheritance.the old ones is called the base class
and the new one is called the derived or sub class.
MULTIPLE INHERIENCE:one depived class from many base class
is reffered to MI.
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / srinivas
Inheritence is the mechanisum by which one obj aquiers the
properties of another object .By which we can achhive the
hirearchial classiffication.
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / vidhya alphonse
Inheritence is defined as the mechanism of deriving a new
class from an already existing class.The class from which
new class derived is called parent or bae class and the
derived one is called derived class.The new derived class
will have the characteristics of its own and the base class.
The main purpose of using inhertence concept is that
nothing but the reusability of code.Muliple inheritence
means deriving a new class from one or more base class.
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / himanshu
Inheritance in java is actually using existing classes or interfaces to make our one useful class or interface..it's main purpose is code reuse..a major concept in Object oriented programming!!
| Is This Answer Correct ? | 2 Yes | 0 No |
Difference between over loading and over ridding?
12 Answers CTS, Patni, Softvision Solution,
What is this interview room ? Is it a class or an object.
What is class encapsulation?
What is Agile methodology?
20 Answers ABC, Accenture, College School Exams Tests, Inmar, Microsoft, Sapient,
Is oop better than procedural?
What is the correct syntax for inheritance? 1) class aclass : public superclass 2) class aclass inherit superclass 3) class aclass <-superclass
Are polymorphisms mutations?
What is abstraction with example?
Why is abstraction needed?
what is pointers
Why interface is used?
What is difference between polymorphism and inheritance?