Multiple choice technology programming languages

Identify whether the following statement is true or false.
The run () method should necessary exist in classes created as subclass of Thread

  1. True

  2. False

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

When creating a Thread subclass, you must override the run() method which contains the code to be executed in that thread. The start() method then calls run() in a new thread of execution.