1. Which two of the following methods are defined in class Thread? start() wait() notify() run() terminate()
Ask Your Doubts Here
Comments
By: guest on 02 Jun 2017 01.26 am
(1) and (4). Only start() and run() are defined by the Thread class. (2) and (3) are incorrect because they are methods of the Object class. (5) is incorrect because there's no such method in any thread-related class.