Question:

The isolation level that prevents dirty reads but allows non-repeatable reads is _______ .

Show Hint

"Read committed" is commonly used for general purpose transactions as it avoids dirty reads but still allows some concurrency anomalies like non-repeatable reads.
Updated On: Jun 16, 2025
  • read uncommitted
  • read committed
  • repeatable read
  • serializable
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is B

Solution and Explanation

The "read committed" isolation level prevents dirty reads, meaning no uncommitted data is read. However, it allows non-repeatable reads, as the data can change between reads.
Was this answer helpful?
0
0