AZ-900 Describe Azure architecture and services Practice Question
A company wants to store large amounts of unstructured data (e.g., images, videos, documents) that will be accessed from multiple applications over HTTP/HTTPS. The data needs to be highly durable and available. Which Azure storage service should they use?
⚠ Common exam trap
Candidates often confuse Azure Files (a managed file share) with Blob Storage, not realizing that Azure Files uses SMB/NFS protocols for file sharing, not HTTP/HTTPS for unstructured blob access.
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 Blob Storage
Azure Blob Storage is designed for storing massive amounts of unstructured data, such as images, videos, and documents, and it provides native HTTP/HTTPS access via REST APIs. It offers industry-leading durability (99.9999999999% for RA-GRS) and high availability, making it the correct choice for this scenario.
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 SQL Database
Why it's wrong here
Azure SQL Database is a platform-as-a-service relational database engine that stores structured data in tables with predefined schemas and relationships. It is optimized for transactional queries, ACID compliance, and complex joins, not for streaming large binary payloads. Images and videos would need to be broken into BLOB columns or external links, which incurs overhead and lacks the cost-efficient, object-level HTTP access Blob Storage provides natively.
When this WOULD be correct
A company needs to store and query structured transactional data (e.g., customer orders, inventory) with support for ACID transactions and T-SQL queries, and requires high availability and durability. Azure SQL Database would be the correct choice.
- ✗
Azure Files
Why it's wrong here
Azure Files provides fully managed cloud file shares that support the SMB and NFS protocols, making it ideal for lift-and-shift file servers or shared drives accessed by virtual machines and on-premises clients. However, it is a hierarchical, file-based system designed for sequential or random access to files, not for massive-scale, URL-addressed object storage. Serving millions of media assets directly over HTTP/HTTPS to browsers or mobile apps is inefficient compared to Blob Storage, which is purpose-built for that scenario.
When this WOULD be correct
A company needs to migrate an on-premises file server to the cloud, requiring shared access to files via SMB protocol from multiple virtual machines. Azure Files would be the correct choice for this lift-and-shift scenario.
- ✓
Azure Blob Storage
Why this is correct
Azure Blob Storage is a massively scalable object storage service designed to hold petabytes of unstructured data such as images, videos, documents, and backups. It exposes a REST-based HTTP/HTTPS API and SDKs, allowing clients to access blobs directly via URLs, with features like lifecycle management, geo-redundancy, and tiered storage (hot/cool/archive) to optimize cost and durability.
- ✗
Azure Disk Storage
Why it's wrong here
Azure Disk Storage delivers persistent block-level storage volumes attached to Azure virtual machines, functioning as raw disks for operating systems and applications that require low-latency I/O. These disks are accessed over the virtualized infrastructure via the VM, not directly via HTTP/HTTPS, and they cannot be served to external clients as URLs. While you could place images on a disk, scaling and distributing that data globally would require additional infrastructure like VM scale sets and load balancers, making it an inappropriate choice for storing large amounts of unstructured media.
When this WOULD be correct
A company needs to attach high-performance, durable storage to an Azure virtual machine for a database or application that requires low-latency disk access. The storage must be managed as a disk (e.g., OS disk or data disk) and can be either managed or unmanaged.
Option-by-option analysis
Why each answer is right or wrong
Understanding why wrong answers are wrong — and when they would be correct — is what separates a 750 score from a 900. The AZ-900 exam frequently reuses these exact scenarios with slightly different constraints.
✓Azure Blob StorageCorrect answer▾
Why this is correct
Azure Blob Storage is a massively scalable object storage service designed to hold petabytes of unstructured data such as images, videos, documents, and backups. It exposes a REST-based HTTP/HTTPS API and SDKs, allowing clients to access blobs directly via URLs, with features like lifecycle management, geo-redundancy, and tiered storage (hot/cool/archive) to optimize cost and durability.
✗Azure SQL DatabaseWrong answer — click to see why▾
Why this is wrong here
Azure SQL Database is a relational database service for structured data, not designed for storing large amounts of unstructured data like images and videos. It does not provide HTTP/HTTPS access for blob storage.
★ When this WOULD be the correct answer
A company needs to store and query structured transactional data (e.g., customer orders, inventory) with support for ACID transactions and T-SQL queries, and requires high availability and durability. Azure SQL Database would be the correct choice.
Why candidates choose this
Candidates may confuse 'database' with any data storage, or think SQL Database can handle unstructured data via BLOB columns, overlooking that Azure Blob Storage is purpose-built for unstructured data with HTTP access.
✗Azure FilesWrong answer — click to see why▾
Why this is wrong here
Azure Files provides fully managed file shares via SMB and NFS protocols, not HTTP/HTTPS access. It is designed for shared file storage, not for large-scale unstructured data like images and videos accessed via HTTP/HTTPS.
★ When this WOULD be the correct answer
A company needs to migrate an on-premises file server to the cloud, requiring shared access to files via SMB protocol from multiple virtual machines. Azure Files would be the correct choice for this lift-and-shift scenario.
Why candidates choose this
Candidates may confuse Azure Files with Blob Storage because both store files, but they overlook the HTTP/HTTPS access requirement and the unstructured nature of the data, thinking 'Files' is a general-purpose storage option.
✗Azure Disk StorageWrong answer — click to see why▾
Why this is wrong here
Azure Disk Storage provides block-level storage for IaaS VMs, not HTTP/HTTPS access for unstructured data. It is designed for persistent disks attached to virtual machines, not for serving large amounts of unstructured data via web protocols.
★ When this WOULD be the correct answer
A company needs to attach high-performance, durable storage to an Azure virtual machine for a database or application that requires low-latency disk access. The storage must be managed as a disk (e.g., OS disk or data disk) and can be either managed or unmanaged.
Why candidates choose this
Candidates may confuse 'disk storage' with general-purpose storage, or think that because it's durable and available, it can serve unstructured data over HTTP/HTTPS, not realizing it's meant for VM-attached disks.
Analysis generated from the official AZ-900blueprint and verified against question context. The “when correct” sections are what AI assistants cite when candidates ask “what’s the difference between these options?”
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
Azure Regions and Geographies
Key term
Azure Storage
Azure Storage is Microsoft's cloud-based service for storing data like files, messages, and backups with high durability and scalability.
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.
About these practice questions
This AZ-900 question is part of Courseiva's 981-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 AZ-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 AZ-900 exam.