What are the Applet’s life cycle methods?

Options
- init(), start() and destroy()
- init(), start() and paint()
- init(), start(), paint(). stop() and destroy()
- init(), start() and stop()


CORRECT ANSWER : init(), start(), paint(). stop() and destroy()

Discussion Board
Applet Life cycle

An applet is a Java program that runs in a Web browser. It can be fully functional Java application because it has the entire Java API at its disposal. There are four methods in the Applet class:

1) 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.

2) 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.

3) 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.

4) 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.

5) 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.

Rohit Sharma 09-30-2014 05:35 PM

Write your comments


Enter the code shown above:

(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement