Explain applet life cycle?

This question is related to Wipro Interview

Showing Answers 1 - 6 of 6 Answers

soujanya

  • Feb 16th, 2012
 

An applet can react to major events in the following ways:

It can initialize itself.
It can start running.
It can stop running.
It can perform a final cleanup, in preparation for being unloaded.

  Was this answer useful?  Yes

mahamad

  • Apr 15th, 2012
 

Applet life cycle:
applet life cycle
1.init() [born of applet]
2.start() [start of applet]
3.stop() [sometimes it goes to stopping mode also]
=>from stop method may be possible sometime it gets some response and
applet will again comes in active mode.
4.destroy() [death of applet]
=>from stop method if it not getting response then it will destroy means die.
So, in this lifecycle applet is born and die.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions