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

Classes implementing the Runnable interface only need to provide the implementation for the run() method. The start() method is a thread management method belonging to the Thread class, not part of Runnable.