Multiple choice java

What is the name of the method used to start a thread execution?

  1. init();

  2. start();

  3. run();

  4. resume();

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

The start() method causes this thread to begin execution; the Java Virtual Machine calls the run method of this thread.