Answer:
A superclass object is a subclass object.
Step-by-step explanation:
By definition, in OOP (Object Oriented Programming), the inheritance concept defines two kind of classes:
A subclass, this is also known as the child class, which inherits from another class.
A superclass, this is also known as the parent class, which other classes inherit (or extends) from.