real time example for deadlock,starvation,livelock
Answers were Sorted based on User's Feedback
Answer / maheswarijothi
pls send answer immediately.................
| Is This Answer Correct ? | 13 Yes | 1 No |
Answer / keerthi
deadlock:let two members are going to draw some picture.they are combinedly having pencil &ruler.one uses pencil,another is having ruler.unless u r with these two the drawing will not be completed.this is dealock.
livelock:two members are walking towards each other through a narrow corridor .Both of them are going tocross the corridor,this is known as livelock.
| Is This Answer Correct ? | 10 Yes | 7 No |
Answer / amit
livelock........
i think this answer should be justify......
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / prateek shrivastava
Dead lock generally occurs when 2 threads try to acquire
same shared resource. In this case each thread end up
waiting for other to release lock and deadlock occurs
| Is This Answer Correct ? | 5 Yes | 5 No |
What are the different tags provided in jstl?
how to connect one jsp page to another jsp page????
What is the use of TL?
What is a "pure virtual" member function?
How do you sort in java?
Is namespace same as package in java?
What is a instance variable?
What type of variable is gender?
How can we find the actual size of an object on the heap?
Write a program to show whether a graph is a tree or not using adjacency matrix.
public class AboutStrings{ public static void main(String args[]){ String s1="hello"; String s2="hel"; String s3="lo"; String s4=s2+s3; //to know the hash codes of s1,s4. System.out.println(s1.hashCode()); System.out.println(s4.hashCode()); // these two s1 and s4 are having same hashcodes. if(s1==s4){ System.out.println("s1 and s4 are same."); }else System.out.println("s1 and s4 are not same."); } } Somebody told me that, == operator compares references of the objects. In the above example even though s1 and s4 are refering to same object(having same hash codes), it is printing s1 and s4 are not same. Can anybody explain in detail why it is behaving like this? Thanks in Advance RavuriVinod
Explain scope or life time of local variables in java?