Core Java Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 608 Page Views: 

What is deadlock?



Posted By: Avi Date: 8 November 2010 06:13:50 AM
 Answer:

Deadlock is a problem happens when two threads are waiting on each other to release a resource and each thread waiting for a resource which is held by the other waiting thread.


Posted By: avibtech


Date: 8 November 2010 06:13:50 AM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image gCETbE
Related Questions
Core Java : What is the difference between TCP/IP and UDP?

What is the difference between TCP/IP and UDP?

TCP/IP is a two-way communication between the client and the server and it is a reliable and there i....
Category: Core Java Date: 11/7/2010 1:51:52 PM
Core Java : What are the methods in Object class that must be overrided, if you override equals() method?
Core Java : What method must be implemented by all threads?

What method must be implemented by all threads?

All tasks must implement the run() method, whether they are a subclass of Thread or implement the R....
Category: Core Java Date: 11/7/2010 12:46:50 PM
Core Java : What modifiers can be used with a local inner class?

What modifiers can be used with a local inner class?

Final or abstract.
Category: Core Java Date: 11/7/2010 12:14:49 PM
Core Java : Are true and false keywords?

Are true and false keywords?

The values true and false are not keywords.
Category: Core Java Date: 11/7/2010 12:02:54 PM