Multiple choice technology programming languages

What is the lifecycle of an applet?-

  1. Init(),start(),paint(),stop(),destroy()

  2. Init(),start(),paint(),destroy(),stop()

  3. Init(),paint(),start(),destroy(),stop()

  4. None of the above

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The correct applet lifecycle follows this sequence: init() (initialization), start() (begins execution), paint() (rendering), stop() (pauses execution), and destroy() (cleanup). This order ensures proper initialization before execution and proper cleanup before termination.