Get premium membership and access questions with answers, video lessons as well as revision papers.

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


Next: Explain the procedure for converting an applet to an application.
Previous: Define: a)System b) Information System c) Computer application d) System Analyst

View More Computer Science Questions and Answers | Return to Questions Index


Learn High School English on YouTube

Related Questions