0
0
Azurecloud~20 mins

Storage commands in Azure - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Azure Storage Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
service_behavior
intermediate
2:00remaining
Understanding Azure Blob Storage Container Creation
You run the command to create a new blob container in Azure Storage:

az storage container create --name mycontainer --account-name mystorageaccount --public-access blob

What is the effect of the --public-access blob option?
AThe container and all blobs inside are publicly readable without authentication.
BOnly the blobs inside the container are publicly readable, but the container metadata is private.
CThe container is private and requires authentication for all access.
DThe container is publicly writable but not readable.
Attempts:
2 left
💡 Hint
Think about what 'blob' level public access means compared to 'container' level.
Configuration
intermediate
2: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?
Aaz storage container upload --name documents --file report.pdf --account-name mystorage
Baz storage blob upload-file --container documents --file report.pdf --account mystorage
Caz storage blob upload --container-name documents --file report.pdf --name report.pdf --account-name mystorage
Daz storage blob put --container documents --file report.pdf --account-name mystorage
Attempts:
2 left
💡 Hint
Check the exact command and parameter names for uploading blobs.
Architecture
advanced
2: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?
APremium block blob storage account
BBlob storage account with cool access tier
CGeneral-purpose v1 storage account
DGeneral-purpose v2 (GPv2) storage account with standard performance
Attempts:
2 left
💡 Hint
Consider performance tiers and latency for storage accounts.
security
advanced
2:00remaining
Effect of Enabling Soft Delete on Azure Blob Storage
What happens when you enable soft delete on an Azure Blob Storage container?
ADeleted blobs are retained for a configurable period and can be restored during that time.
BDeleted blobs are permanently removed immediately and cannot be recovered.
CBlobs cannot be deleted while soft delete is enabled.
DSoft delete encrypts blobs automatically at rest.
Attempts:
2 left
💡 Hint
Think about what 'soft delete' means in data protection.
Best Practice
expert
2: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?
AStore data in a general-purpose v2 account using the hot access tier.
BStore data in a premium block blob storage account with cool access tier.
CStore data in a general-purpose v1 account with standard performance.
DStore data in a blob storage account using the archive access tier.
Attempts:
2 left
💡 Hint
Consider access frequency and cost trade-offs of storage tiers.