answersLogoWhite

0

What is a use inheritance?

Updated: 8/18/2019
User Avatar

Wiki User

12y ago

Best Answer

Code Re-use is one of the biggest uses of Inheritance

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is a use inheritance?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Use the word inheritance in a sentence?

She received a large inheritance from her wealthy grandmother.


Did Gregor Mendel use animals in his experiments?

Mendel studied plant inheritance.


Why is multiple inheritance not possible in C?

C is not object-oriented -- you can't even use single inheritance let alone multiple inheritance.


What happens to an inheritance during bankruptcy?

If the inheritance is based on a death within 180 days of filing bk, the inheritance becomes part of the estate and the trustee will use it to pay your creditors.


How does a geneticist use a pedigree?

A geneticist would use a pedigree to trace the inheritance of traits in humans.


What is the main reason to use inheritance?

to avoid the duplicate values


Can you use heredity in a sentence?

Heredity is the study of the inheritance of genes.


Can you use non taxable inheritance money for donation as a deduction?

no


Can an executor spend inheritance money with out consulting the beneficiaries when those beneficiaries do not know the valuje of there inheritance?

The executor can use the money for the benefit of the estate, not for their personal use. They are entitled to payment for their services.


Can money from an inheritance be taken for back child support?

Well, if you have the cash from an inheritance, then you should use it to catch up on your payments. As far as there being a lien or garnishment on the inheritance, you would have to check with a lawyer.


Using console application show the use of inheritance in your program?

inheritance is purpose of deriving one class from other class and it is reusabilty of code..


How multiple inheritance is done in java?

Java doesn't have multiple inheritance proper. It is possible for a class to implement different interfaces - however, in this case, only the method names are "inherited", not their contents. It is also possible to use composition instead of inheritance: an object can contain objects of different classes, and use the methods of the objects it contains - but this, too, is a different mechanism than inheritance.