41. For what reasons might a thread stop execution?
a) A thread with higher priority began execution. b) The thread's wait() method was invoked. c) The thread invoked its yield() method. d) The thread's pause() method was invoked. e) The thread's sleep() method was invoked.
ans is a,b,c and e
Should A be consider as answer since it is jvm dependent