Multiple choice technology programming languages

What is the Immediate superclass of the Applet Class in AWT?

  1. Panel

  2. Frame

  3. Window

  4. AWT

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

In the Java AWT (Abstract Window Toolkit) hierarchy, the Applet class directly extends Panel. The full inheritance chain is: Object -> Component -> Container -> Panel -> Applet. Panel is the immediate superclass, not Frame, Window, or the abstract AWT class itself.