All AppsNeuron Trainer HealthNeuron Trainer TradesNeuron Trainer TechNeuron Trainer NextNeuron Trainer MotionStudy GuidesTechnologyRoadmapPricingReviewsAboutFAQFor OrganizationsSupportGet the Apps →
Free AWS Solutions Architect – Associate practice · Tech

AWS Solutions Architect Associate practice test: 4 free SAA-C03 questions and the qualifier that decides them

AWS Certified Solutions Architect – Associate (SAA-C03) is 65 questions in 130 minutes, and you pass at 720 on a 100–1,000 scale, above the 700 AWS publishes for Cloud Practitioner. Only 50 questions are scored. It costs 150 USD, lasts three years, and AWS expects at least one year of hands-on experience designing cloud solutions.

Formally the AWS Certified Solutions Architect – Associate (SAA-C03). Awarding body: Amazon Web Services. Neuron Trainer is an independent study app and is not affiliated with, endorsed by or sponsored by the organization that owns this exam.

AWS Solutions Architect – Associate at a glance, with the source for every line

Every row below is quoted from a document published by AWS and carries the date we checked it. Where AWS publishes nothing, the row says so instead of quoting a number from somewhere else.

Exam code
SAA-C03, exam guide version 1.1.Source: AWS, Certified Solutions Architect Associate exam guide (PDF), verified 7 August 2026
Questions
65 questions, multiple choice or multiple response. Only 50 affect your score; 15 are unscored and are not identified on the exam.Source: AWS, Certified Solutions Architect Associate exam guide (PDF), verified 7 August 2026
Time limit
130 minutes.Source: AWS, Certified Solutions Architect Associate certification page, verified 7 August 2026
Passing score
720, reported on a scaled score of 100–1,000.Source: AWS, Certified Solutions Architect Associate exam guide (PDF), verified 7 August 2026
Cost
150 USD.Source: AWS, Certified Solutions Architect Associate certification page, verified 7 August 2026
How long it lasts
Three years.Source: AWS, Certified Solutions Architect Associate certification page, verified 7 August 2026
Recommended experience
At least one year of hands-on experience designing cloud solutions using AWS services.Source: AWS, Certified Solutions Architect Associate certification page, verified 7 August 2026
Cloud Practitioner, for comparison
AWS publishes 100 USD, 90 minutes and 65 questions for Cloud Practitioner (CLF-C02), at a passing score of 700.Source: AWS, Certified Cloud Practitioner certification page, verified 7 August 2026The 700 passing score is in the CLF-C02 exam guide: https://d1.awsstatic.com/training-and-certification/docs-cloud-practitioner/AWS-Certified-Cloud-Practitioner_Exam-Guide.pdf
Pass rate
Not published by AWS. AWS does not publish a pass rate for any of its certification exams.Checked against: AWS, Certified Solutions Architect Associate certification page, verified 7 August 2026

Always verify: AWS revises its exam guides and can change pricing and exam versions. Confirm the current exam code, fee and guide at aws.amazon.com/certification before you book.

What AWS publishes as the official AWS Solutions Architect – Associate blueprint

These weights are AWS's, quoted from the source below. They are the only weights on this page that describe the real exam.

Published by AWS and verified on 7 August 2026.
AreaWeight AWS publishes
Design secure architectures30%
Design resilient architectures26%
Design high-performing architectures24%
Design cost-optimized architectures20%

Scroll the table sideways to see every column.

Source: AWS, Certified Solutions Architect Associate exam guide (PDF), verified 7 August 2026.

What our AWS Solutions Architect – Associate question bank covers

What this app's question bank covers — our own category shares across 650 questions, not AWS's published blueprint.
CategoryQuestions in our bankShare of our bank
Resilient Architectures
Multi-AZ/region, failover, DR, decoupling, scalable designs
16926%
High-Performing Architectures
Compute selection, storage performance, caching, DB performance
15624%
Secure Architectures
IAM, encryption, network security, federation
19530%
Cost-Optimized Architectures
Pricing models, right-sizing, storage classes, data transfer cost
13020%

Scroll the table sideways to see every column.

Try it

4 questions from our AWS Solutions Architect – Associate bank

Questions from our SAA-C03 bank, weighted the way AWS weights the exam, with a full explanation on each.

AWS Solutions Architect – Associate · Free practice Every answer explained. No signup, no email wall.
  1. Question 1 of 4

    A company stores application log files in Amazon S3. The logs are accessed frequently for the first 30 days for troubleshooting, rarely accessed for the next 60 days, and must be retained for 7 years for compliance but almost never retrieved after 90 days. Which S3 lifecycle configuration is MOST cost-effective?
    Answer and explanation

    Correct answer: Transition to S3 Standard-IA after 30 days, then to S3 Glacier Deep Archive after 90 days

    This tiering matches access patterns to storage cost: Standard-IA is cheaper than Standard for the 30-90 day 'rarely accessed' window while still allowing millisecond retrieval, and Glacier Deep Archive offers the lowest cost per GB for the long 7-year compliance retention where retrieval is essentially never needed. One Zone-IA sacrifices AZ resilience and the option deletes data needed for compliance. Keeping everything in Standard is far more expensive than necessary. Glacier Instant Retrieval immediately would forfeit frequent early access needed for troubleshooting.

  2. Question 2 of 4

    A third-party SaaS monitoring vendor requires access to a customer's AWS account to pull CloudWatch metrics. The customer creates an IAM role that the vendor's account can assume via sts:AssumeRole. To prevent the confused deputy problem, in which the vendor could be tricked into acting on behalf of the wrong customer, what should the trust policy include?
    Answer and explanation

    Correct answer: A condition requiring a unique ExternalId value known only to the vendor and this customer

    AWS documents the ExternalId condition as the standard mitigation for the confused deputy problem in third-party cross-account access: the vendor must supply the customer-specific ExternalId with each AssumeRole call, ensuring they cannot accidentally use one customer's role ARN on another customer's behalf. MFA protects against stolen credentials but doesn't address cross-tenant role confusion. Source IP restrictions are unreliable for SaaS vendors with dynamic, multi-tenant infrastructure. CloudWatch has no resource-based policy mechanism, making that option invalid.

  3. Question 3 of 4

    Instances behind an Application Load Balancer intermittently fail health checks and are removed from service, even though the application is functioning correctly. The health check is configured with a 5-second timeout and a 2-consecutive-failure threshold. What is the MOST likely cause?
    Answer and explanation

    Correct answer: The health check interval and timeout are too aggressive for the application's response time under load

    A health check timeout and threshold set too aggressively for how long the application actually takes to respond under load will cause healthy instances to be marked unhealthy and removed from rotation. Adjusting the timeout, interval, and thresholds to match realistic response times resolves the flapping. A protocol mismatch would cause consistent total failures, not intermittent ones. The cooldown period affects scaling actions, not health check evaluation. Instances in different AZs from the ALB is expected and normal, not a cause of health check failures.

  4. Question 4 of 4

    A solutions architect is designing a nightly batch analytics job that processes log files for 4 hours. The job can be interrupted and restarted without data loss because progress is checkpointed to Amazon S3 every 5 minutes. The company wants to minimize compute cost. Which EC2 purchasing option is MOST appropriate?
    Answer and explanation

    Correct answer: Spot Instances

    Spot Instances offer up to 90% savings over On-Demand pricing and are ideal for fault-tolerant, interruptible workloads like batch processing with checkpointing, since a 2-minute interruption notice gives time to save state. On-Demand costs far more for a predictable, non-critical job. Reserved Instances require a 1-3 year commitment, unsuitable for a short nightly job that could be scheduled flexibly. Dedicated Hosts are for licensing/compliance needs requiring physical server isolation, not cost savings.

What actually trips people up on SAA-C03

Several answers work. One fits the qualifier

The scenario will say MOST cost-effective, or MOST resilient, or with the LEAST operational overhead. Two or three options will do the job. Read the qualifier before the options, then eliminate on that basis rather than on technical correctness.

S3 storage classes map to access patterns, not to age

Standard for frequent access, Standard-IA for infrequent with millisecond retrieval, One Zone-IA when you can accept losing an Availability Zone, Glacier Instant for archive you still need fast, Deep Archive for compliance retention you will almost never read. A lifecycle question is really a reading-comprehension question about how often the data is touched.

ExternalId is the answer to the confused deputy problem

When a third-party SaaS vendor assumes a role in your account, the trust policy needs a unique ExternalId so the vendor cannot be tricked into acting on the wrong customer’s behalf. Not MFA, not source-IP restriction, which is unreliable for multi-tenant SaaS.

Spot is correct whenever the workload can be interrupted

Checkpointing, restartable, fault-tolerant, batch: those words mean Spot. Reserved Instances need a one to three year commitment, so they are wrong for a short nightly job. Dedicated Hosts are a licensing and compliance answer, never a cost answer.

Health check settings cause phantom failures

When healthy instances keep dropping out of an ALB target group, the usual cause is a timeout and threshold tuned tighter than the application’s real response time under load. Intermittent removal points at aggressive health checks; consistent total failure points at a protocol or port mismatch.

An 8-week study plan

Eight weeks, assuming you already have roughly a year of hands-on AWS. Our SAA-C03 bank holds 650 questions across the four official domains at AWS’s own weights.

Weeks 1–2: design secure architectures

The 30% domain and the largest. IAM roles and policies, cross-account access and ExternalId, VPC design and endpoints, encryption at rest and in transit, secrets handling.

Weeks 3–4: design resilient architectures

26%. Multi-AZ and multi-region patterns, decoupling with SQS and SNS, Auto Scaling, load balancer behavior and health checks, backup and recovery objectives.

Weeks 5–6: design high-performing architectures

24%. Choosing storage and database services on access pattern, caching with CloudFront and ElastiCache, and the compute options and when each wins.

Week 7: design cost-optimized architectures

20%. Purchasing options, S3 lifecycle policies and storage classes, right-sizing, and data transfer costs, which are the ones people forget exist.

Week 8: simulate at full length

Sit 65-question, 130-minute simulations. Practice reading the qualifier first. Use the per-domain breakdown, and book the exam when your readiness score is green across all four. Do the same thing with every question you get wrong: decide whether you picked an answer that does not work, or an answer that works but loses to the qualifier. Those are two different mistakes and they need two different fixes.

Is AWS Solutions Architect Associate hard?

SAA-C03 is a genuine step up from Cloud Practitioner: same 65 questions, but 130 minutes against the 90 AWS publishes for Cloud Practitioner, and a higher bar at 720 rather than 700. The extra time exists because the questions are longer and the reasoning is harder.

The specific difficulty is that most questions have more than one answer that works. The scenario decides between them with a qualifier: MOST cost-effective, MOST resilient, LEAST operational overhead. Candidates who evaluate options on technical correctness alone pick a working answer that is not the right one. Reading the qualifier before the options is the single highest-value habit for this exam.

AWS recommends at least a year of hands-on design experience, and it shows: the exam assumes you have chosen between storage classes and purchasing options with real money involved. AWS publishes no pass rate.

Our own bank of 650 questions puts 210 at difficulty 3 and 189 at difficulty 4, with secure architectures carrying the most at 195 questions, matching its 30% weighting as the heaviest domain.

How the AWS Solutions Architect – Associate differs from the exams beside it

Same 65 questions as Cloud Practitioner, 130 minutes against its 90, a higher bar at 720 instead of 700, and a completely different job to do. Cloud Practitioner asks what a service is. SAA-C03 gives you a requirement with a cost constraint and a failure mode and asks which combination of services satisfies it. Almost every question has more than one technically working answer, and only one that is MOST cost-effective or MOST resilient given what the scenario specified.

Questions people actually ask about the AWS Solutions Architect – Associate

What is the passing score for AWS Solutions Architect Associate?

720 on a scaled score of 100 to 1,000, which is higher than the 700 AWS publishes for Cloud Practitioner. Scoring is compensatory, so you pass the exam overall rather than each domain.

How many questions is SAA-C03?

65 in 130 minutes, of which only 50 are scored. The other 15 are unscored trial items that AWS does not identify.

How much does SAA-C03 cost?

150 USD, as published on the AWS certification page. AWS publishes 100 USD for Cloud Practitioner by comparison.

Do you need Cloud Practitioner before Solutions Architect Associate?

No. AWS recommends at least one year of hands-on experience designing AWS solutions, but sets no certification prerequisite. Many people go straight to Associate level.

How long does the certification last?

Three years. You recertify by retaking the current exam, or by earning the Solutions Architect – Professional certification, which also renews it.

Why do several answers look correct?

Because they are. The exam is designed so multiple options work technically, and the qualifier in the question, MOST cost-effective or LEAST operational overhead, decides which one is right. Read that phrase before you read the options.

How long should you study for AWS Solutions Architect Associate?

Eight weeks if you already have roughly a year of hands-on time: two on secure design, two on resilience, two on performance, one on cost, one on full-length timed runs. Without that background, the reading alone will take longer than the drilling.

Are these real SAA-C03 exam questions?

No. These 650 are written in-house from the AWS SAA-C03 exam guide. Reproducing live items breaches the AWS certification agreement and is grounds for revocation. Ours are built the way the real exam is: several answers work, and the explanation names the qualifier, most cost-effective or most resilient, that settles it.

Practice another Tech exam

IT, cloud & cybersecurity. Every one of these pages is built the same way: sourced facts, an honest admission where the sponsor publishes nothing, and free practice questions.

The app

The AWS Solutions Architect – Associate app is still in development

The SAA-C03 app carries 650 questions across the four exam-guide domains at AWS’s own weights, each with a full explanation that names why the other working answers lose to the qualifier. It includes Smart Quiz, Topic Drill, a fixed-length 65-question Exam Simulator on a 130-minute clock matching the real exam, and an AI tutor set up for AWS architecture. It is not on the App Store yet.

  • Smart Quiz — keeps returning to the categories you keep missing
  • Topic Drill — one category at a time, on its own
  • Exam Simulator — a fixed-length timed paper (65 questions in 130 minutes, as this app sets it). It does not get harder as you go; the length and the mix are fixed.
  • AI tutor — re-explains any question in plain English
  • Progress tracking, reported per category
  • Study reminders
  • Light and dark themes

The app calls you ready at 72% on its own simulator. That is an in-app practice target we chose, not AWS's passing standard.

Not on the App Store yet. This one is still in development, so there is nothing to download today. The practice questions above are the whole of what we can give you right now, and they are free and complete. See where it sits in the queue, or browse the apps that are live.

Read the qualifier first.

Most SAA-C03 questions have several answers that work and one that fits. The app is in development; the practice questions and verified SAA-C03 facts here are free now.

See the apps that are live

Sources, and when we last checked them

This page was last reviewed on . The 8 facts quoted above were last checked against their sources on . Where AWS publishes nothing, the table above says so rather than guessing.

AWS, Amazon Web Services and AWS Certified Solutions Architect are trademarks of Amazon.com, Inc. or its affiliates. Neuron Trainer is an independent study aid and is not affiliated with, endorsed by, or sponsored by AWS.