Podcast
Questions and Answers
What is the term used to describe the condition where concurrent access to shared data may result in data inconsistency?
What is the term used to describe the condition where concurrent access to shared data may result in data inconsistency?
- Semaphores
- Race Condition (correct)
- Critical sections
- Synchronisation hardware
What are the three operations performed at the CPU level for the operation counter++?
What are the three operations performed at the CPU level for the operation counter++?
- Execute, Load, Store
- Load, Update, Store (correct)
- Read, Write, Execute
- Fetch, Increment, Save