Which two of the following methods are defined in class Thread?
Note
(A) and (D) is right because only start()
and run()
are defined by the Thread class.
(B) and (C) are incorrect because they are methods of the Object class. (E) is incorrect because there's no such method in any thread-related class.