gosh,
c and d sure seem unlikely. in my opinion, the correct answers should be a,b,c.
a: suspend() and resume() should speak for themselves
b: after a period of 10000ms.,
thread goes to ready state. the scheduler, having determined that no other threads are in pool, reschedules the same thread for exec
c: same reason as above
d: incorrect, as resume() can only be used upon a thread that has been suspend()ed
am i correct or just confused??