Revature Interview Question

What is inheritance?

Interview Answers

Anonymous

Aug 22, 2017

The ability of a new class to be created, from an existing class by extending it, is called inheritance.

1

Anonymous

Jan 9, 2019

Inheritance is a mechanism where, in a new class is derived from an existing class.

Anonymous

May 3, 2019

When a child class inherits the characteristics of the parents class

Anonymous

Nov 9, 2020

Inheritance is a state where the properties of an existing parent element is extended to children elements.

Anonymous

Oct 24, 2022

Inheritance is a relationship among classes, wherein one class shares the structure or behavior defined in one (single inheritance ) or more (multiple inheritance) other classes. Inheritance defines a "kind of" hierarchy among classes in which a subclass inherits from one or more superclasses; a subclass typically augments or redefines the existing structure and behavior of its superclasses.