Multiple choice

Which of the following is NOT a part of Applet life cycle?

  1. paint

  2. stop

  3. start

  4. init

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

The standard applet lifecycle consists of four methods: init(), start(), stop(), and destroy(). The paint() method is used for rendering but is not part of the official lifecycle sequence - it's called when the applet needs to display content.