Examveda
Examveda

What notifyAll() method do?

A. Wakes up one threads that are waiting on this object's monitor

B. Wakes up all threads that are not waiting on this object's monitor

C. Wakes up all threads that are waiting on this object's monitor

D. None of the above

Answer: Option C

Solution(By Examveda Team)

notifyAll() : Wakes up all threads that are waiting on this object's monitor.A thread waits on an object's monitor by calling one of the wait methods.


This Question Belongs to Java Program >> Threads

Join The Discussion

Related Questions on Threads

What is a thread in Java?

A. A lightweight process that runs independently within a program

B. A data structure to store variables

C. A type of loop

D. A synchronization mechanism