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
Why is java architectural neutral?
What are the difference between string, string builder, and string buffer in java?
What are the approaches that you will follow for making a program very efficient?
what is an objects lock and which objects have locks? : Java thread
How do you add an element to an arraylist in java?
How do you use substring in java?
Explain about field hiding in java?
Can I override protected method in java?
How to create packages in java?
List types of storage classes in java?
What is array sorting in java?
Can a function return a function?
What are operators and its types?
Why null value is used in string?
How many JVMs can run on a single machine and what is the Just-In-Time(JIT) compiler?