What is Inheritance, Multiple Inheritance, Shared and
Repeatable Inheritance?

Answers were Sorted based on User's Feedback



What is Inheritance, Multiple Inheritance, Shared and Repeatable Inheritance?..

Answer / mahesh kumar

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

What is Inheritance, Multiple Inheritance, Shared and Repeatable Inheritance?..

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

What is Inheritance, Multiple Inheritance, Shared and Repeatable Inheritance?..

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

What is Inheritance, Multiple Inheritance, Shared and Repeatable Inheritance?..

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

Post New Answer

More OOPS Interview Questions

Write a macro for swapping integers

5 Answers  


What is multilevel inheritance in oop?

0 Answers  


The type of variable a pointer points to must be the part of pointer's definition so that:

1 Answers   Infosys,


What is the highest level of cohesion?

0 Answers  


What is meant by oops concept?

0 Answers  






what is the technical or oop name of object?

1 Answers  


Difference between new operator and operator new

2 Answers  


What is differance between Abstract and Interface

3 Answers  


hi all..i want to know oops concepts clearly can any1 explain??

0 Answers   Eureka Forbes,


Out of 4 concepts, which 3 C++ Follow?

1 Answers   TCS,


You attempt to query the data base with this command: SELECT name, salary FROM employee WHERE salary=(SELECT salary FROM employee WHERE last name='Wagner' OR dept no=233) Choose most appropriate option from the following: 1)Sub-queries are not allowed in the where clause. 2)a multiple row sub-query used with a single row comparison operator. 3)a single row query is used with a multiple row comparison operator.

10 Answers   Zycus Infotech,


what is difference between thread and programme.

1 Answers   NCC,


Categories