What is the lifecycle of an applet?
1888
25-Oct-2010
Pushpendra Singh
08-Nov-2010init(): This method is called to initialized an applet
start(): This method is called after the initialization of the applet.
stop(): This method can be called multiple times in the life cycle of an Applet.
destroy(): This method is called only once in the life cycle of the applet when applet is destroyed.