A class that is inherited in Java is called a

A class that is inherited in Java is called a Correct Answer subclass

A class that is inherited/derived from another class is called subclass(also a derived class extended class or child class). The class from which the subclass is derived is called superclass(also a base class or parent class).
Bissoy MCQ

Related Questions

If class C inherits class B. And B has inherited class A. Then while creating the object of class C, what will be the sequence of constructors getting called?
If class A has two nested classes B and C. Class D has one nested class E, and have inherited class A. If E inherits B and C, then ________________