What are the ways in which a thread can enter the waiting state?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

What will be the output of the program? public class Test { public static void main(String args[]) { ArrayList<String> list = new ArrayList<String>(); list.add("2"); list.add("3"); list.add("4"); list.add("5"); System.out.println("size :"+list.size()); for(int i=0;i<list.size();i++) { list.remove(i); } System.out.println("size after:"+list.size()); } }

5 Answers   Rolta,


How do you check if a character in a string is a digit or letter?

0 Answers  


Can we override constructors in java?

0 Answers  


What is oops in java?

0 Answers  


What is high level language in computer?

0 Answers  






Which collections are thread safe in java?

0 Answers  


What is the public field modifier?

0 Answers  


What does i ++ mean in Java?

0 Answers  


What is prime number in java?

0 Answers  


What are the advantages and disadvantages of object cloning?

0 Answers  


Which data type is class in java?

0 Answers  


What is constructor and virtual function? Can we call a virtual function in a constructor?

0 Answers  


Categories