---
title: "What Is A Super-class?"  
description: "What Is A Super-class?"  
author: "Prakash nidhi Verma"  
published: 2018-06-20  
updated: 2020-09-18  
canonical: https://www.mindstick.com/interview/23437/what-is-a-super-class  
category: "java"  
tags: ["java"]  
reading_time: 1 minute  

---

# What Is A Super-class?

A super-class is the basis of the class under consideration of a given class. The given class is defined as a subset of the super-class. Objects of the given class potentially posses all the characteristics belonging to objects of the super-class.

## Answers

### Answer by Arti Mishra

**SuperClass**

Superclass is those classes that extended by another class (sub class). It is also known as base classes or parent class. In other words you can say that “a class whose all properties and methods are inherited by subclass is known as superclass”.

## For Example

public class SupperClass

{

...........

.........

}

A new class (SubClass) can be created by extending all properties or methods of SupperClass.

public class SubClass extends SupperClass

{

............

.............

}

\

### Answer by Prakash nidhi Verma

A super-class is the basis of the class under consideration of a given class. The given class is defined as a subset of the super-class. Objects of the given class potentially posses all the characteristics belonging to objects of the super-class.


---

Original Source: https://www.mindstick.com/interview/23437/what-is-a-super-class

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
