Multiple choice technology programming languages

What Is SuperClass In JAVA

  1. Parent Class

  2. Class

  3. Child Class

  4. None Of Above

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

In Java, a superclass is the parent class that is being extended. When class B extends class A, class A is the superclass (parent) and class B is the subclass (child). Superclass provides attributes and methods that subclasses inherit.