0
0
Azurecloud~20 mins

Storage tiers (Hot, Cool, Archive) in Azure - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Azure Storage Tier Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding Azure Storage Tier Costs

You have a large amount of data that you rarely access but need to keep for compliance. Which Azure storage tier is the most cost-effective for this scenario?

AHot tier, because it offers the lowest access latency.
BArchive tier, because it has the lowest storage cost but higher access latency.
CCool tier, because it balances cost and access frequency.
DPremium tier, because it provides the highest performance.
Attempts:
2 left
💡 Hint

Think about storage cost versus access frequency and latency.

service_behavior
intermediate
2:00remaining
Accessing Data in Archive Tier

You have a blob stored in the Archive tier. What happens when you try to read this blob immediately after the request?

AThe blob must be rehydrated to Hot or Cool tier first, causing a delay before access.
BThe blob is instantly available for reading with no delay.
CThe blob is automatically moved to Hot tier before reading.
DThe read request fails because Archive tier blobs cannot be read.
Attempts:
2 left
💡 Hint

Consider the nature of Archive tier and how data access works.

Architecture
advanced
3:00remaining
Designing a Cost-Effective Storage Solution

You need to design a storage solution for a company that has three types of data: frequently accessed, infrequently accessed, and archival data. Which combination of Azure storage tiers should you use to optimize cost and performance?

AUse Hot tier for frequently accessed data, Cool tier for infrequently accessed data, and Archive tier for archival data.
BUse Cool tier for all data to balance cost and access.
CStore all data in Hot tier for simplicity and performance.
DUse Archive tier for all data to minimize cost.
Attempts:
2 left
💡 Hint

Think about matching data access patterns to storage tiers.

security
advanced
3:00remaining
Data Retention and Compliance with Storage Tiers

A company must retain data for 7 years to meet compliance. They want to ensure data cannot be deleted or modified during this period. Which Azure feature combined with storage tiers supports this requirement?

AUse Hot tier with soft delete enabled.
BUse Archive tier with lifecycle management policies.
CUse Cool tier with access tier change enabled.
DUse immutable blob storage with legal hold or time-based retention policies.
Attempts:
2 left
💡 Hint

Think about preventing data changes or deletion for compliance.

Best Practice
expert
4:00remaining
Optimizing Cost with Lifecycle Management Policies

You want to automatically move blobs between Hot, Cool, and Archive tiers based on their last modified date to optimize costs. Which lifecycle management rule configuration correctly implements this?

Azure
{
  "rules": [
    {
      "name": "tiering-rule",
      "type": "Lifecycle",
      "definition": {
        "filters": {"blobTypes": ["blockBlob"]},
        "actions": {
          "baseBlob": {
            "tierToCool": {"daysAfterModificationGreaterThan": 30},
            "tierToArchive": {"daysAfterModificationGreaterThan": 90}
          }
        }
      }
    }
  ]
}
AMove blobs to Hot tier after 30 days and to Cool tier after 90 days of no modification.
BMove blobs to Archive tier after 30 days and to Cool tier after 90 days of no modification.
CMove blobs to Cool tier after 30 days and to Archive tier after 90 days of no modification.
DMove blobs to Cool tier after 90 days and to Archive tier after 30 days of no modification.
Attempts:
2 left
💡 Hint

Check the order and timing of tier transitions in the lifecycle policy.