Asked by Lonette McMorris on Jun 18, 2024

verifed

Verified

A super class is also called a

A) derived class
B) dominant class
C) sub class
D) base class

Super Class

In object-oriented programming, the class from which a subclass inherits properties and methods.

Base Class

A base class, also known as a superclass, is a class that is being inherited from by another class (subclass).

Derived Class

A class that inherits properties and behavior from another class, referred to as the base class.

  • Gain an understanding of what constitutes a base class and its connection to derived classes.
verifed

Verified Answer

TS
tanvir samraJun 24, 2024
Final Answer :
D
Explanation :
A super class is also known as a base class from which other classes can be derived or inherited. This base class can contain common properties and behavior that can be inherited by its subclasses.