Multiple choice

_______ method of thread class creates a background process.

  1. Start()

  2. Thread(…)

  3. Run()

  4. Both (1) and (3)

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

In Java and Android threading, calling the start() method of a Thread class tells the system to initiate a new thread of execution, creating a separate background process or thread path. The run() method merely executes code in the current thread.