What is race condition ?? (Threading concept) TCS 2 sept10
Answer Posted / suj
Race conditions
: Threads can try to update the same data structure at the same time.
The result can be partly what one thread wrote and partly what the other thread wrote.
This garbles the data structure, typically causing the next thread that tries to use it to
crash.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is tcp and udp?
How do you clear an arraylist in java?
Give the hierarchy of inputstream and outputstream classes.
What is the private method modifier?
What are the core java topics?
What is qualitative variable?
Explain different forms of polymorphism?
Difference between process and thread?
What is use of functional interface in java 8? Explain
What happens when a thrown exception is not handled?
How to make a class or a bean serializable?
Is 64bit faster than 32 bit?
What is difference between calling start() and run() method of thread?
how to create multithreaded program? Explain different ways of using thread? : Java thread
What is var keyword ?