Which method is used to reactivate a suspended thread?
Explanation
The resume() method is specifically designed to restart a thread that has been suspended. The yield() method merely hints the scheduler to pause the current thread. The suspend() method pauses the thread, while start() initiates a thread for the first time. The stop() method terminates a thread.