Multiple choice java Which cannot directly cause a thread to stop executing? Calling the SetPriority() method on a Thread object. Calling the wait() method on an object. Calling notify() method on an object. Calling read() method on an InputStream object. Reveal answer Fill a bubble to check yourself C Correct answer Explanation notify() - wakes up a single thread that is waiting on this object's monitor.