Multiple choice technology programming languages

Which method will a web browser call first on a new applet?

  1. main method.

  2. start method.

  3. init method.

  4. run method

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

When a web browser loads an applet, it first calls the init() method to initialize the applet, similar to a constructor. The start() method is called after init() to begin execution. Option A (main) is for standalone applications. Option D (run) is used with threads, not applets.