Develop for Azure storage2 / 5
You are working with Azure Cosmos DB for NoSQL. Which consistency level provides the strongest consistency guarantees but has the highest latency?
CorrectIncorrect
Alex
Per Microsoft docs, Strong consistency provides linearizability — reads always return the most recent committed write. It has the highest write latency because data must replicate and commit synchronously across regions. The five levels from strongest to weakest: Strong, Bounded Staleness, Session, Consistent Prefix, Eventual.
Why distractors are wrong:
- Eventual: Weakest consistency with lowest latency and no ordering guarantees.
- Session: Mid-tier; guarantees monotonic reads/writes only within a client session.
- Bounded staleness: Near-strong but allows a configurable lag window (time or operations).
Exam tip: Know all five levels in order. Strong = linearizability + highest latency. Write latency equals 2x RTT between farthest regions.
Sourcelearn.microsoft.com
Follow-up answers are available in the app. Create a free account — no credit card required.
Question 2 of 5
Create a free account