Multiple choice technology web technology

Which is not a phase of Applet life cycle?

  1. init();

  2. destroy();

  3. starts();

  4. stop();

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

The standard lifecycle methods of a Java Applet include init(), start(), stop(), and destroy(). The method named starts(); with an 's' is incorrect, as the actual method is start();.