Home / Java Programming / Threads :: Discussion

Discussion :: Threads

  1. Which two of the following methods are defined in class Thread?

    1. start()
    2. wait()
    3. notify()
    4. run()
    5. terminate()

  2. A.
    1 and 4
    B.
    2 and 3
    C.
    3 and 4
    D.
    2 and 4

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    (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.


Be The First To Comment