Question 758: Which three are methods of the Object class?notify();notifyAll();isInterrupted();synchronized();interrupt();wait(long msecs);sleep(long msecs);yield();
tcs
wipro
infosys
general
aptitude
threads
java-programming
(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 methodsisInterrupted()andinterrupt()are instance methods ofThread.The methodssleep()andyield()are static methods ofThread.D is incorrect becausesynchronizedis a keyword and thesynchronized()construct is part of the Java language.