What is the immediate superclss of the Applet class

Panel.

In Core Java, the immediate superclass of the Applet class is the Panel class. The Applet class extends the Panel class, which, in turn, extends the Container class, and the Container class extends the Component class. Therefore, the class hierarchy looks like this:

Object > Component > Container > Panel > Applet

So, the correct answer is Panel.