Which two of the following methods are defined in class Thread?
start() wait() notify() run() terminate()
Which three guarantee that a thread will leave the running state?
yield() wait() notify() notifyAll() sleep(1000) aLiveThread.join() Thread.killThread()