A good answer might be:

A brilliant person would not answer that question.

Single Inheritance

The class that is used as a basis for defining a new class is called a parent class (or superclass or base class.) The new class based on the parent class is called a child class (or subclass or derived class.)

In Java, (unlike with humans) children inherit characteristics from just one parent. This is called single inheritance. Some languages allow a child to inherit from more than one parent. This is called multiple inheritance. With multiple inheritance, it is sometimes hard to tell which parent will contribute what characteristics to the child (as with humans.) Java avoids these problems by using single inheritance.

QUESTION 2:

[Thought question:] Can a parent class have more than one child class?

Click Here after you have answered the question