0
0
Azurecloud~20 mins

Storage tier optimization in Azure - Practice Problems & Coding Challenges

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

Which Azure Blob Storage access tier is best suited for data that is accessed less than once a month but requires immediate availability when accessed?

APremium tier
BHot tier
CCool tier
DArchive tier
Attempts:
2 left
💡 Hint

Think about balancing cost and access frequency for rarely accessed data.

Architecture
intermediate
2:00remaining
Choosing Storage Tiers for Backup Data

You need to design a backup solution in Azure for data that must be retained for years but is rarely accessed. Which storage tier should you choose to minimize cost while ensuring data durability?

AArchive tier
BHot tier
CCool tier
DStandard HDD managed disks
Attempts:
2 left
💡 Hint

Consider the lowest cost option for long-term retention with infrequent access.

Configuration
advanced
2:30remaining
Configuring Lifecycle Management for Blob Storage

Given the following lifecycle management rule JSON snippet, what will happen to blobs that have not been modified for 90 days?

{
  "rules": [
    {
      "name": "moveToCool",
      "type": "Lifecycle",
      "definition": {
        "filters": {
          "blobTypes": ["blockBlob"]
        },
        "actions": {
          "baseBlob": {
            "tierToCool": {"daysAfterModificationGreaterThan": 90}
          }
        }
      },
      "enabled": true
    }
  ]
}
ABlobs older than 90 days will be deleted automatically.
BBlobs older than 90 days will be moved to the Cool tier automatically.
CBlobs older than 90 days will be moved to the Archive tier automatically.
DNo action will be taken because the rule is disabled.
Attempts:
2 left
💡 Hint

Look at the action specified under tierToCool.

security
advanced
2:30remaining
Securing Data in Archive Tier

Which of the following is a best practice to ensure data security for blobs stored in the Archive tier in Azure Blob Storage?

AUse Azure Storage Service Encryption (SSE) with customer-managed keys.
BDisable encryption since Archive tier is already secure by default.
CStore data without access policies to improve retrieval speed.
DUse public access to allow easy data sharing.
Attempts:
2 left
💡 Hint

Think about encryption and control over keys for sensitive data.

Best Practice
expert
3:00remaining
Optimizing Cost with Automated Tiering

You manage a large dataset in Azure Blob Storage with varying access patterns. You want to minimize costs by automatically moving blobs between Hot, Cool, and Archive tiers based on usage. Which approach best achieves this?

AManually move blobs between tiers using Azure Portal every month.
BUse Azure Files instead of Blob Storage for automatic tiering.
CSet all blobs to Archive tier and restore them manually when needed.
DUse Azure Blob Storage lifecycle management policies with rules for tier transitions based on last modified date.
Attempts:
2 left
💡 Hint

Consider automation features provided by Azure Blob Storage.