What is testing Race
Answers
Answered by
54
- Race conditions occur in multi-threaded software when multiple threads attempt to modify a piece of shared data at the same time. This can become a potentially serious problem if the output of one thread's execution affects another thread's execution, in a way that causes unexpected or incorrect results.
Answered by
2
Answer:
A race condition occurs when multiple threads simultaneously access the same shared co de, variables, files, etc. without locking or synchronization, resulting in inconsistency of the output. ... A race condition can occur if proper synchronization techniques are not applied.
Explanation:
Hope its helpful.
Similar questions