mediummultiple choiceObjective-mapped

A global e-commerce platform uses Azure Cosmos DB for its product catalog. The application requires multi-region writes to provide low-latency updates from any geographic location. Two users may update the same product item concurrently, so the solution must automatically resolve conflicts. For real-time inventory checks, reads must be strongly consistent, while product description reads can be eventually consistent. Which Cosmos DB configuration should they choose?

Question 1mediummultiple choice
Full question →

A global e-commerce platform uses Azure Cosmos DB for its product catalog. The application requires multi-region writes to provide low-latency updates from any geographic location. Two users may update the same product item concurrently, so the solution must automatically resolve conflicts. For real-time inventory checks, reads must be strongly consistent, while product description reads can be eventually consistent. Which Cosmos DB configuration should they choose?

Answer choices

Why each option matters

Good practice is not just finding the correct option. The wrong answers often show the exact trap the exam wants you to fall into.

A

Best answer

SQL API with multi-region writes, last-writer-wins conflict resolution, and per-request strong consistency

SQL API supports multi-master writes, customizable conflict resolution, and the ability to set strong consistency on a per-request basis.

B

Distractor review

MongoDB API with multi-region writes and automatic conflict resolution

The MongoDB API does not support strong consistency across regions; it is limited to eventual consistency when using multi-region writes.

C

Distractor review

Table API with multi-region writes and strong consistency

The Table API does not support strong consistency in a multi-region write scenario; it is eventually consistent.

D

Distractor review

Cassandra API with multi-region writes and strong consistency

The Cassandra API in Cosmos DB does not support strong consistency; it is eventually consistent with configurable consistency levels.

Common exam trap

Common exam trap: answer the scenario, not the keyword

Many certification questions include familiar terms but test a specific constraint. Read the exact wording before choosing an answer that is generally true but wrong for this case.

Technical deep dive

How to think about this question

This question should be treated as a scenario, not a definition check. Identify the problem, the constraint and the best action. Then compare each option against those facts.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.
  • Use explanations to understand the rule behind the answer.

TExam Day Tips

  • Underline the problem statement mentally.
  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Related practice questions

Related AZ-305 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

More questions from this exam

Keep practising from the same exam bank, or move into a focused topic page if this question exposed a weak area.

FAQ

Questions learners often ask

What does this AZ-305 question test?

Read the scenario before looking for a memorised answer.

What is the correct answer to this question?

The correct answer is: SQL API with multi-region writes, last-writer-wins conflict resolution, and per-request strong consistency — Azure Cosmos DB SQL API supports multi-region writes (multi-master) and allows you to set a conflict resolution policy (e.g., last-writer-wins). It also supports multiple consistency levels, including strong consistency for individual requests, while default can be eventual. The MongoDB API does not support strong consistency globally. The Table API and Cassandra API also have limited consistency options.

What should I do if I get this AZ-305 question wrong?

Then try more questions from the same exam bank and focus on understanding why the wrong options are tempting.

Discussion

Loading comments…

Sign in to join the discussion.