Which method is used to reactivate a suspended thread?

Choose the correct answer

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.

Which method is used to reactivate a suspended threa… — Java concepts and its programming | PakQuizHub