Sail E0 Webinar
Question

Which three are methods of the Object class?

    1. notify();

    2. notifyAll();

    3. isInterrupted();

    4. synchronized();

    5. interrupt();

    6. wait(long msecs);

    7. sleep(long msecs);

    8. yield();


Options:
A .  1, 2, 4
B .  2, 4, 5
C .  1, 2, 6
D .  2, 3, 4
Answer: Option C

(1), (2), and (6) are correct. They are all related to the list of threads waiting on the 

specified object.

(3), (5), (7), and (8) are incorrect answers. The methods isInterrupted() and interrupt() 

are instance methods of Thread.

The methods sleep() and yield() are static methods of Thread.

D is incorrect because synchronized is a keyword and the synchronized() construct is part of 

the Java language.



Was this answer helpful ?
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers