What does single-level inheritance mean?

What does single-level inheritance mean? Correct Answer A single subclass derives from a single superclass

In single-level inheritance, there is a single subclass which inherits from a single superclass. So the class definition of the subclass will be: class B(A): where A is the superclass.

Related Questions