What are the advantages of inheritance?
Answers were Sorted based on User's Feedback
Answer / maragatham
inheritance helps to avoid writing code again and again.
it helps us to reduce the size of the code
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / george tsiga
1. Promotes reusability
2. Helps in better abstraction, thereby resulting in better
design.
3. Eliminates duplication of code
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / parna mazumdar
1.Reusability
2.Extendibility
3.Maintainability
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / raju
inheritence provides less code.and we can add the further enhancement of code with out modifying the parent class.and with this it provides code reusebulity.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / siddhartha
The advantage of inheritance are:
1.Reusability
2.Code sharing
3.Software component
4.Information hiding
5.Rapid prototyping
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / haneet kaur
1. Reuse of existing code and program functionality: the program does not have to write and re-write the same code for logically same problem.
2. Less labour intensive: the programmers do not have to rewrite the same long similar program just because the application to be developed has slightly different requirements.
3. Well organised. the object are well organised in a way that they follow some hierarchy.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / krish
fine all the above answers saying inheritance is mainly used to reusing the code so development time reduses.ok fine
to reuse the already created class we can use reference of that class directly. then why we go for the inheritance?.
i think by using object references complexity will increases.It creates confusion to users.
and by creating reference another object is created. so memory wastage here.
i don't know exactly .....If there r any answers please post.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / qureshi s.
In inheritance , we acquire or inherite the properties of
existing class. i.e here reusability is occur which means
that we can add the additional feauters into an existing
class without modifying it.
inheritance saves the programmer time and effort. written
can be reused in various situations as needed.
It Increases Program Structure which results in greater
reliability.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is polymorphism in oop example?
write a program to print * * * * * *
How is the using() pattern useful? What is IDisposable? How does it support deterministic finalization?
What are the important components of cohesion?
What is the full form of oops?
What is polymorphism what is it for and how is it used?
What are the two different types of polymorphism?
What is difference between polymorphism and inheritance?
what is overloading and overriding?
Tell us about yourself.
47 Answers ABB, Amazon, Fidelity, Flextronics, Franklin Templeton, HCL, Hexaware, IBM, Impetus, Infosys, Reliance, Rofous, Silgate, Sutherland, TCS, Thomson Reuters, Virtusa, Wipro,
Can anyone please explain runtime polymorphism with a real time example??at what ciscumstances we go for it??
what is difference between String s=new String("vali"); String s="vali"