Describe considerations for working with non-relational data on Azure →mediumMultiple SelectObjective-mapped
DP-900 Azure Queue Storage Practice Question
Which TWO of the following are valid use cases for Azure Queue Storage?
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
✓
Building a serverless workflow with Azure Functions
Azure Queue Storage is a service for storing large numbers of messages that can be accessed from anywhere via authenticated calls. It is commonly used to decouple application components and enable asynchronous processing. Option A is correct because Azure Queue Storage can trigger Azure Functions to build serverless workflows. Option D is correct because it is designed to decouple front-end and back-end components by passing messages between them. Option B is incorrect because storing JSON documents for querying is better suited for Cosmos DB or Table Storage. Option C is incorrect because storing large binary objects is handled by Azure Blob Storage. Option E is incorrect because real-time event streaming is typically done with Azure Event Hubs or Azure Stream Analytics.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
Building a serverless workflow with Azure Functions
Why this is correct
Building a serverless workflow with Azure Functions is a valid Queue Storage use case because a queue's messages can trigger Function execution through the Queue trigger binding. This pattern lets you stage work items durably, with visibility timeouts and poison-message handling, while Azure Functions scales automatically to process the queue, enabling a reliable event-driven pipeline.
- ✗
Storing JSON documents for querying
Why it's wrong here
Storing JSON documents for querying is not a queue use case because queue messages are opaque 64 KB payloads with no schema awareness, indexing, or query language. Azure Cosmos DB is purpose-built for JSON document storage, offering flexible schema, automatic indexing, and SQL-like queries over the document contents.
- ✗
Storing large binary objects for a website
Why it's wrong here
Storing large binary objects for a website is wrong for queues because each queue message is limited to 64 KB, and Queue Storage is not designed to serve assets directly over HTTP. Azure Blob Storage is the correct service for images, videos, and other binary files because it supports large objects, access tiers, and content delivery network integration.
- ✓
Decoupling front-end and back-end components in a web application
Why this is correct
Decoupling front-end and back-end components in a web application is a core Queue Storage scenario: the front end enqueues a request and returns immediately, while a background worker processes it at its own pace. This asynchronous buffer allows the two tiers to scale independently and keeps the application resilient when the back end is temporarily unavailable.
- ✗
Real-time event streaming for analytics
Why it's wrong here
Real-time event streaming for analytics is not appropriate for Queue Storage because queues provide point-to-point consumption of discrete work items rather than high-throughput, multi-consumer event streams. Azure Event Hubs is built for telemetry ingestion and streaming analytics, preserving large volumes of events so multiple downstream processors can read and analyze them.
Visual reference
Quick reference
Azure Blob Storage Tier Comparison
| Tier | Storage Cost | Retrieval Cost | Latency | Use Case |
|---|---|---|---|---|
| Hot | Highest | Lowest | Immediate | Active data, frequent reads |
| Cool | Lower | Higher | Immediate | Data accessed < once / month |
| Cold | Lower still | Higher | Immediate | Data accessed < once / quarter |
| Archive | Lowest | Highest + rehydration delay | Hours | Long-term compliance retention |
Go deeper
Related to this question
Learn chapter
Analytics and Data Warehouse Concepts
Key term
Blob storage
Blob storage is a cloud service for storing large amounts of unstructured data, such as text or binary data, like documents, images, and videos.
Key term
Service
A service is a software component or system that performs a specific function and is available to be used by other programs or users over a network.
About these practice questions
This DP-900 question is part of Courseiva's 820-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. Learn why practice questions differ from exam dumps →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
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.