Which of the following statements are true. Select the two correct answers.
a. The wait method defined in the
Thread class, can be used to convert a thread from Running state to Waiting state.
b. The wait(), notify(), and notifyAll() methods must be executed in synchronized code.
c. The notify() and notifyAll() methods can be used to signal and move waiting threads to ready-to-run state.
d. The Thread class is an abstract class.
the answer is b and c. I don't know why b is correct.