Question:medium

Two transactions operate on the same data item: 
• $T_1$: Read(X), Write(X) 
• $T_2$: Read(X), Write(X) 
If both execute without proper control, the system may face?

Show Hint

The Lost Update Problem is also known as a "Write-Write Conflict." It is the most common reason why databases enforce strict isolation levels.
Updated On: Jul 4, 2026
  • Deadlock
  • Lost update problem
  • Starvation
  • Thrashing
Show Solution

The Correct Option is B

Solution and Explanation

Was this answer helpful?
0