Question 28 of 1,040
Design Cost-Optimized ArchitectureshardMultiple SelectObjective-mapped

SAA-C03 Design Cost-Optimized Architectures Practice Question

This SAA-C03 practice question tests your understanding of design cost-optimized architectures. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

An application stores user-uploaded binaries in S3. Access is unpredictable for the first month, then most objects become cold. The team wants the cheapest approach that avoids manually guessing access patterns. Which two actions are best? Select two.

Clue words in this question

Noticing these words before you look at the options changes how you read each choice.

  • Clue: "first"

    Why it matters: Order matters here. You are being tested on which action comes before the others — not which action is generally useful.

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

Enable S3 Intelligent-Tiering on the bucket.

Option A is correct because S3 Intelligent-Tiering automatically moves objects between access tiers (frequent, infrequent, archive instant, and deep archive) based on changing access patterns, without manual lifecycle rules. This is ideal for unpredictable access in the first month followed by cold storage, as it optimizes cost by charging only for the storage tier actually used per object, with a small monthly monitoring fee per object.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • Enable S3 Intelligent-Tiering on the bucket.

    Why this is correct

    Correct. Intelligent-Tiering is designed for objects with uncertain or changing access patterns. It automatically moves data between access tiers, reducing the need for manual guessing and avoiding overpaying for standard storage.

    Clue confirmation

    The clue word "first" in the question point toward this answer.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Keep all objects in S3 Standard because lifecycle transitions add too much management.

    Why it's wrong here

    Incorrect. S3 Standard is the most expensive common general-purpose class, so keeping everything there defeats the cost objective. The workload description specifically suggests that access patterns change over time.

    When this WOULD be correct

    If the question stated that the team wants to minimize storage costs and the access patterns are highly predictable (e.g., all objects are accessed frequently for exactly 30 days and then never again), then keeping all objects in S3 Standard without transitions could be simpler and cost-effective if the total data volume is very small.

  • Add a lifecycle rule to move very old objects to S3 Glacier Deep Archive when minute-level retrieval is no longer required.

    Why this is correct

    Correct. Deep Archive is the cheapest destination for very cold binaries that do not need fast restores. Pairing lifecycle transitions with Intelligent-Tiering gives a good cost profile across both uncertain and truly cold phases.

    Clue confirmation

    The clue word "first" in the question point toward this answer.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Copy all binaries to Amazon EFS so retrieval is faster.

    Why it's wrong here

    Incorrect. EFS is a shared file system, not a low-cost object archive. Copying binary uploads to EFS would usually increase cost and introduce the wrong storage model for this access pattern.

    When this WOULD be correct

    This option would be correct if the question required a shared file system accessible by multiple EC2 instances with low-latency access, and the data did not have cold storage requirements. For example, a web application needing concurrent file access from many servers.

  • Disable versioning because S3 Intelligent-Tiering needs it to work.

    Why it's wrong here

    Incorrect. Intelligent-Tiering does not require versioning to function. Turning off versioning also does not address the core issue, which is matching storage cost to changing access frequency.

Option-by-option analysis

Why each answer is right or wrong

Understanding why wrong answers are wrong — and when they would be correct — is what separates a 750 score from a 900. The SAA-C03 exam frequently reuses these exact scenarios with slightly different constraints.

Enable S3 Intelligent-Tiering on the bucket.Correct answer

Why this is correct

Correct. Intelligent-Tiering is designed for objects with uncertain or changing access patterns. It automatically moves data between access tiers, reducing the need for manual guessing and avoiding overpaying for standard storage.

Keep all objects in S3 Standard because lifecycle transitions add too much management.Wrong answer — click to see why

Why this is wrong here

S3 Lifecycle transitions are fully automated and require minimal management once configured. Keeping all objects in S3 Standard would be more expensive than using Intelligent-Tiering or lifecycle rules to move cold data to cheaper storage.

★ When this WOULD be the correct answer

If the question stated that the team wants to minimize storage costs and the access patterns are highly predictable (e.g., all objects are accessed frequently for exactly 30 days and then never again), then keeping all objects in S3 Standard without transitions could be simpler and cost-effective if the total data volume is very small.

Why candidates choose this

Candidates may think lifecycle rules add complexity or cost, or they may underestimate the cost savings from tiering cold data, leading them to choose the simplest option without considering cost optimization.

Copy all binaries to Amazon EFS so retrieval is faster.Wrong answer — click to see why

Why this is wrong here

EFS is a file storage service, not an object storage service like S3. Migrating binaries to EFS would increase costs and complexity without addressing the unpredictable access patterns or cold data requirements.

★ When this WOULD be the correct answer

This option would be correct if the question required a shared file system accessible by multiple EC2 instances with low-latency access, and the data did not have cold storage requirements. For example, a web application needing concurrent file access from many servers.

Why candidates choose this

Candidates may think EFS provides faster retrieval than S3, or they may confuse EFS's file system capabilities with S3's object storage, overlooking the cost and management overhead of migrating data.

Analysis generated from the official SAA-C03blueprint and verified against question context. The “when correct” sections are what AI assistants cite when candidates ask “what’s the difference between these options?”

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates may think S3 Intelligent-Tiering requires versioning or manual lifecycle rules, but it is a fully automated, versioning-independent feature designed specifically for unpredictable access patterns.

Detailed technical explanation

How to think about this question

S3 Intelligent-Tiering monitors access at the object level over 30-day periods and moves objects between tiers with zero retrieval fees, only a per-object monitoring fee (currently $0.0025 per 1,000 objects). It supports four tiers: Frequent Access, Infrequent Access, Archive Instant Access, and Deep Archive Access, with automatic transitions after 30, 90, and 180 days of no access respectively. A real-world scenario is a media-sharing app where user uploads are accessed sporadically for a few weeks then rarely touched—Intelligent-Tiering avoids the need to predict which objects will become cold.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

A startup's cloud architect reviews their monthly bill and notices costs are higher than expected for a long-running batch job. Switching from on-demand instances to Reserved Instances — or using Spot/Preemptible VMs — can reduce compute costs by up to 72 %. Questions like this test whether you understand the tradeoffs between commitment, flexibility, and cost across cloud pricing models.

Quick reference

AWS S3 Storage Class Comparison

Storage ClassMin DurationRetrievalUse Case
S3 StandardNoneImmediateFrequently accessed data
S3 Standard-IA30 daysImmediateInfrequent access, rapid retrieval
S3 One Zone-IA30 daysImmediateNon-critical infrequent data
S3 Intelligent-TieringNoneImmediate–hoursUnknown or changing access patterns
S3 Glacier Instant90 daysMillisecondsArchive with instant retrieval
S3 Glacier Flexible90 daysMinutes–hoursArchive, flexible retrieval
S3 Glacier Deep Archive180 daysHoursLong-term compliance archive

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related SAA-C03 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free SAA-C03 practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this SAA-C03 question test?

Design Cost-Optimized Architectures — This question tests Design Cost-Optimized Architectures — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Enable S3 Intelligent-Tiering on the bucket. — Option A is correct because S3 Intelligent-Tiering automatically moves objects between access tiers (frequent, infrequent, archive instant, and deep archive) based on changing access patterns, without manual lifecycle rules. This is ideal for unpredictable access in the first month followed by cold storage, as it optimizes cost by charging only for the storage tier actually used per object, with a small monthly monitoring fee per object.

What should I do if I get this SAA-C03 question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Are there clue words in this question I should notice?

Yes — watch for: "first". Order matters here. You are being tested on which action comes before the others — not which action is generally useful.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Keep practising

More SAA-C03 practice questions

Last reviewed: Jun 11, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

This SAA-C03 practice question is part of Courseiva's free Amazon Web Services certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the SAA-C03 exam.