What method call is used to tell a thread that it has the opportunity to run?
wait()
notify()
start()
run()
B.
The notify()
method is used to tell a pool of waiting threads that one of them can run.
There is no guarantee as to which thread will run, though.