Question 949 of 982

Quick Answer

The answer is Azure Cache for Redis, because its sorted set data structure—using commands like ZADD and ZRANGE—is purpose-built for a high-performance leaderboard that stores player scores and retrieves the top 10 scores quickly. As an in-memory store, it handles high-throughput score updates with O(log(N)) complexity, meeting the low-latency requirement without needing a fixed schema or complex queries. On the DP-900 exam, this scenario tests your ability to match workload characteristics to Azure data services; a common trap is choosing Azure SQL Database or Cosmos DB for their querying power, but the key here is the need for real-time ranking and simple key-value operations. Remember that Redis excels at “leaderboard logic” because it keeps data in RAM and natively ranks items—think of it as a lightning-fast scoreboard that never touches disk for reads. A helpful memory tip: “Redis Ranks Real-time”—the three Rs tie its sorted sets directly to leaderboard scenarios.

DP-900 Practice Question: Describe considerations for working with non-relational data on Azure

This DP-900 practice question tests your understanding of describe considerations for working with non-relational data on azure. Match the stated requirement to the specific cloud service, access model, or configuration option — many options are valid in isolation but not for this scenario. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

A gaming application requires a high-performance leaderboard that stores player scores and retrieves the top 10 scores quickly. The data does not require complex queries or a fixed schema. The leaderboard must support updates as new scores are submitted. Which Azure data store is most appropriate for this scenario?

Question 1hardmultiple choice
Full question →

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

Azure Cache for Redis

Azure Cache for Redis is the most appropriate choice because it provides an in-memory data structure store with native support for sorted sets (via the ZADD and ZRANGE commands), which are ideal for maintaining a real-time leaderboard. It can handle high-throughput score updates and retrieve the top 10 scores in O(log(N)) time, meeting the low-latency and performance requirements without needing a fixed schema.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • Azure Cosmos DB with SQL API

    Why it's wrong here

    Incorrect. Cosmos DB can serve leaderboards but adds overhead and cost; it is not purpose-built for high-speed sorted set operations like Redis.

  • Azure Table storage

    Why it's wrong here

    Incorrect. Table storage is key-value storage with limited querying capabilities and higher latency, not ideal for real-time leaderboards.

  • Azure Cache for Redis

    Why this is correct

    Correct. Redis provides sorted sets that allow efficient insertion and retrieval of top scores with low latency, making it ideal for leaderboards.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Azure Blob Storage

    Why it's wrong here

    Incorrect. Blob storage is for large binary objects and does not support in-memory operations or sorted data structures needed for leaderboards.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates often choose Azure Cosmos DB (Option A) because they associate it with high performance and NoSQL, but they overlook that Azure Cache for Redis is purpose-built for in-memory, sub-millisecond operations like sorted sets, which are exactly what a leaderboard requires.

Detailed technical explanation

How to think about this question

Under the hood, Redis sorted sets use a skip list and a hash table to maintain elements ordered by score, allowing O(log(N)) for both insert/update and range queries. The ZREVRANGE command with the WITHSCORES option retrieves the top 10 scores in descending order in a single round trip. In a real-world scenario, a gaming leaderboard might also use Redis expiration to handle time-based leaderboards (e.g., daily/weekly) and Redis persistence (RDB/AOF) to avoid data loss on restart.

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.

TExam Day Tips

  • 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.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

A media company stores terabytes of video archives that are accessed once a year for audit purposes. Moving these objects to a cold storage tier (Azure Archive, S3 Glacier, or Google Nearline) costs a fraction of hot storage. Questions like this test whether you understand storage tiers, access frequency tradeoffs, and retrieval latency requirements.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related DP-900 practice-question pages

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

Practice this exam

Start a free DP-900 practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this DP-900 question test?

Describe considerations for working with non-relational data on Azure — This question tests Describe considerations for working with non-relational data on Azure — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Azure Cache for Redis — Azure Cache for Redis is the most appropriate choice because it provides an in-memory data structure store with native support for sorted sets (via the ZADD and ZRANGE commands), which are ideal for maintaining a real-time leaderboard. It can handle high-throughput score updates and retrieve the top 10 scores in O(log(N)) time, meeting the low-latency and performance requirements without needing a fixed schema.

What should I do if I get this DP-900 question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Keep practising

More DP-900 practice questions

Last reviewed: Jun 11, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

This DP-900 practice question is part of Courseiva's free Microsoft certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the DP-900 exam.