Multiple choice technology programming languages

Any class that implements the Runnable interface has to provide the implementation for the following methods public void start(); public void run();

  1. True

  2. False

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

The Runnable interface requires only the run() method to be implemented. The start() method belongs to the Thread class, not Runnable. When implementing Runnable, you override run() with your task logic, then pass the Runnable to a Thread which calls start() to invoke run() in a new thread.