Consistency – CC

Question 4. What is a race condition in concurrent systems?


Answer:

A race condition occurs when multiple processes or threads attempt to access and modify shared resources at the same time, leading to unpredictable outcomes. This happens because the processes "race" to execute without proper synchronization.


Resources:

Geeks For Geeks Article: Handling Race Condition in Distributed System

View here