Multiple choice Which of the following is NOT a part of Applet life cycle? paint stop start 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.