Which of these methods belong to Thread & Object class?
join, yield, sleep, wait, notify
Answers were Sorted based on User's Feedback
Answer / paletipatisrinu
wait()and notify() methods are Thread and object class methods
| Is This Answer Correct ? | 8 Yes | 13 No |
What are the differences between graph and tree?
abstract class Demo { public void show() { System.out.println("Hello I am In show method of Abstract class"); } } class Sample extends Demo { public void show() { super.show(); System.out.println("Hello I am In Sample "); } } public class Test { public static void main(String[] args) { //I WANT TO CALL THE METHOD OF BASE CLASS IT IS POSSIBLE OR NOT CAN WE USE SCOPE RESOLUTION OPERATOR TO CALL OR JAVA NOT SUPPORTED THAT :: OPERATORE } }
Which java collection does not allow null?
Is 'sizeof' a keyword?
What is difference between null and void?
What's the difference between an abstract class and interface in java?
What is the primitive type byte?
Why do we need data serialization?
What is the difference between comparison done by equals method and == operator?
Can we sort list in java?
is memory to the abstract class allocated ..or objects not instantiated
What is floor in java?