The method '____' waits for a thread to die.
-
join
-
stop
-
enumerate
-
yield
A
Correct answer
Explanation
The join() method causes the current thread to wait until the thread on which it is called completes execution. This is a fundamental thread synchronization mechanism in Java that ensures one thread waits for another to finish before proceeding.