0
0
AWScloud~20 mins

S3 storage classes (Standard, IA, Glacier) in AWS - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
S3 Storage Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding S3 Storage Classes Cost Behavior

You have three files stored in Amazon S3 using different storage classes: Standard, Infrequent Access (IA), and Glacier. Which storage class will incur the highest cost when you retrieve the files frequently?

AGlacier storage class
BStandard storage class
CInfrequent Access (IA) storage class
DAll have the same cost for frequent retrieval
Attempts:
2 left
💡 Hint

Think about which storage classes charge extra for data retrieval.

service_behavior
intermediate
2:00remaining
S3 Glacier Retrieval Time Behavior

You request to retrieve an object stored in S3 Glacier. Which statement best describes the retrieval time?

AThe object is deleted after retrieval request.
BThe object is available immediately after the request.
CThe object retrieval takes minutes to hours depending on retrieval option.
DThe object retrieval time is the same as Standard storage class.
Attempts:
2 left
💡 Hint

Glacier is designed for long-term storage with delayed access.

Architecture
advanced
3:00remaining
Designing Cost-Effective S3 Storage for Mixed Access Patterns

You manage a dataset where 80% of files are accessed frequently and 20% are rarely accessed. Which S3 storage class combination is best to minimize cost while maintaining performance?

AStore all files in Standard storage class.
BStore frequently accessed files in Standard and rarely accessed files in Infrequent Access (IA).
CStore all files in Glacier storage class.
DStore frequently accessed files in IA and rarely accessed files in Glacier.
Attempts:
2 left
💡 Hint

Consider balancing storage cost and retrieval cost based on access frequency.

security
advanced
3:00remaining
Securing S3 Glacier Data with Encryption and Access Controls

Which of the following is the best practice to secure data stored in S3 Glacier?

ADisable encryption and rely on bucket policies only.
BUse client-side encryption only and allow all users to retrieve data.
CStore data without encryption but enable public read access.
DUse server-side encryption with AWS KMS and restrict access with IAM policies.
Attempts:
2 left
💡 Hint

Think about encryption and access control layers.

Best Practice
expert
4:00remaining
Optimizing Lifecycle Policies for S3 Storage Classes

You want to automate moving objects from Standard to IA after 30 days, then to Glacier after 90 days, and finally delete after 365 days. Which lifecycle policy configuration correctly implements this?

AWS
LifecycleConfiguration:
  Rules:
    - ID: MoveToIA
      Status: Enabled
      Filter: {}
      Transitions:
        - Days: 30
          StorageClass: STANDARD_IA
        - Days: 90
          StorageClass: GLACIER
      Expiration:
        Days: 365
AThe policy moves objects to IA after 30 days, then Glacier after 90 days, and deletes after 365 days.
BThe policy moves objects to IA after 30 days and deletes after 90 days, skipping Glacier.
CThe policy deletes objects after 30 days without any transitions.
DThe policy moves objects directly to Glacier after 30 days and deletes after 365 days.
Attempts:
2 left
💡 Hint

Check the order and timing of transitions and expiration.