Trusted by millions of Kenyans
Study resources on Kenyaplex

Get ready-made curriculum aligned revision materials

Exam papers, notes, holiday assignments and topical questions – all aligned to the Kenyan curriculum.

State and briefly describe the four methods that define the structure of an Applet.

State and briefly describe the four methods that define the structure of an Applet.

Answers


gregory
? init: This method is intended for whatever initialization is needed for your applet. It is called after
the param tags inside the applet tag have been processed.
? start: This method is automatically called after the browser calls the init method. It is also called
whenever the user returns to the page containing the applet after having gone off to other pages.
? stop: This method is automatically called when the user moves off the page on which the applet
sits. It can, therefore, be called repeatedly in the same applet.
? destroy: This method is only called when the browser shuts down normally. Because applets are
meant to live on an HTML page, you should not normally leave resources behind after a user
leaves the page that contains the applet.
? paint: Invoked immediately after the start() method, and also any time the applet needs to repaint
itself in the browser. The paint() method is actually inherited from the java.awt.
gregorymasila answered the question on January 24, 2018 at 17:44

Answer Attachments

Exams With Marking Schemes

Related Questions