Multiple choice technology programming languages

A dead thread can be restarted by calling the start() method again on that object

  1. True

  2. False

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

In Java, once a thread completes its execution and enters the dead (terminated) state, it cannot be restarted. Attempting to call the start() method again on a dead thread will throw an IllegalThreadStateException.