Challenge - 5 Problems
Azure Storage Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
❓ service_behavior
intermediate2:00remaining
Understanding Azure Blob Storage Container Creation
You run the command to create a new blob container in Azure Storage:
What is the effect of the
az storage container create --name mycontainer --account-name mystorageaccount --public-access blobWhat is the effect of the
--public-access blob option?Attempts:
2 left
💡 Hint
Think about what 'blob' level public access means compared to 'container' level.
✗ Incorrect
The '--public-access blob' option allows anonymous read access to blobs within the container, but the container metadata remains private. This means users can read blobs if they know the URL but cannot list blobs or read container properties.
❓ Configuration
intermediate2:00remaining
Correct Azure CLI Command to Upload a File to Blob Storage
Which Azure CLI command correctly uploads a local file named
report.pdf to a blob container named documents in the storage account mystorage?Attempts:
2 left
💡 Hint
Check the exact command and parameter names for uploading blobs.
✗ Incorrect
The correct command is 'az storage blob upload' with parameters '--container-name', '--file', '--name', and '--account-name'. Other options are invalid or use wrong parameter names.
❓ Architecture
advanced2:00remaining
Choosing Storage Account Type for High Transaction Workloads
You need to design an Azure Storage solution for an application with very high transaction rates and low latency requirements. Which storage account type should you choose?
Attempts:
2 left
💡 Hint
Consider performance tiers and latency for storage accounts.
✗ Incorrect
Premium block blob storage accounts provide low latency and high throughput, suitable for high transaction workloads. Standard accounts have higher latency and lower throughput.
❓ security
advanced2:00remaining
Effect of Enabling Soft Delete on Azure Blob Storage
What happens when you enable soft delete on an Azure Blob Storage container?
Attempts:
2 left
💡 Hint
Think about what 'soft delete' means in data protection.
✗ Incorrect
Soft delete retains deleted blobs for a retention period, allowing recovery if deletion was accidental. It does not prevent deletion or encrypt data.
✅ Best Practice
expert2:00remaining
Optimizing Azure Storage Costs for Infrequently Accessed Data
You have large amounts of data that are rarely accessed but must be retained for compliance. Which Azure Storage strategy best balances cost and accessibility?
Attempts:
2 left
💡 Hint
Consider access frequency and cost trade-offs of storage tiers.
✗ Incorrect
The archive tier is the lowest cost option for rarely accessed data but has higher latency for retrieval. It is ideal for compliance data that is infrequently read.