Computer Science, asked by VIVEK4371, 1 year ago

Which is the correct order for life cycle of an applet?

Answers

Answered by bushraasghar313
0

Answer:

Applet is initialized,started,painted,stopped,destroyed

Answered by dreamrob
0

The correct order for the life cycle of an applet is initialized, started, painted, stopped, and destroyed.

  • The applet is a java class that runs in a web browser. It does not run on its own but it is embedded in other programs. It is used to provide interactive features to web pages.
  • Firstly it is intialized by init() funtion. Then it runs start() function.
  • Then, if a person navigates to another age stop() function runs.
  • At last, the applet destroy() function runs and the applet got destroyed.
Similar questions