Multiple choice

What is the immediate super class of Applet class?

  1. Object

  2. Window

  3. Panel

  4. Component

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

In Java AWT, the Applet class directly extends Panel, making Panel its immediate superclass. The class hierarchy is: Applet -> Panel -> Container -> Component -> Object.