Skip to content
GKgkml.dev
← Learn AWS SAA-C03

Lesson 6 of 6 · 8 min

Reading a scenario question

The mechanical process that turns four plausible options into one defensible answer.

The procedure

  1. Read the final sentence first. It states what is being asked; the preceding paragraph is context.
  2. Underline the qualifier — 'most cost-effective', 'least operational overhead', 'highest availability', 'without managing servers'. It decides between otherwise valid options.
  3. Note the hard constraints: compliance, data residency, RTO/RPO figures, protocols, existing components that cannot change.
  4. Eliminate options that are technically impossible or violate a constraint. There are usually two.
  5. Compare the survivors on the qualifier alone. One will be better on that axis.
  6. Sanity check against least privilege and managed services — the intended answer rarely stores long-lived keys or builds something AWS already offers.

Qualifiers and what they eliminate

PhrasePoints towardEliminates
Least operational overheadManaged and serverless servicesSelf-managed instances, custom scripts
Most cost-effectiveThe cheapest option still meeting the requirementOver-provisioned or active-active designs
Without managing serversLambda, Fargate, Aurora Serverless, S3Anything on EC2
Minimal application changesLift-and-shift, EFS, RDSRe-architecting to DynamoDB or Lambda
Must not traverse the internetVPC endpoints, PrivateLink, Direct ConnectNAT gateway, public endpoints
Real time / sub-secondKinesis, ElastiCache, DAXBatch, Glue, Athena
Highly availableMulti-AZ, Auto Scaling across AZsAny single-AZ design

Distractor patterns worth recognising

An option that is technically correct but ignores the qualifier — it works, but costs more or requires more management than the intended answer.

An option naming a real service used for something it does not do, such as using Athena for real-time lookups or CloudTrail for performance metrics.

An option that solves a problem the question did not ask about. If the stem is about cost and an option improves security, it is a distractor.

An option that is subtly impossible — cross-Region VPC peering with overlapping CIDRs, or attaching one EBS volume to instances in two AZs.

Worth remembering

  • Read the last sentence first — it contains the actual requirement.
  • Qualifiers like 'least operational overhead' or 'most cost-effective' are the tie-breakers.
  • Eliminate on technical impossibility before comparing the survivors.

Test it now

Apply this on the hard bank, where options are deliberately close.