AWS · SAA-C03
Validates the ability to design and implement distributed systems on AWS, covering secure architectures, resilient architectures, high-performing architectures, and cost-optimized architectures.
Questions
600
Duration
130 minutes
Passing Score
720/1000
Difficulty
AssociateLast Updated
Jan 2025
Use this SAA-C03 practice exam to prepare for AWS Certified Solutions Architect - Associate (SAA-C03) with realistic questions, detailed explanations, and focused study modes. The practice bank includes 600 questions for AWS SAA-C03, so you can review the exam steadily instead of relying on one long cram session.
As you practice, pay extra attention to recurring topics such as Design Secure Architectures, Design Resilient Architectures, Design High-Performing Architectures, and Design Cost-Optimized Architectures. Start with short sessions to identify weak areas, then move into timed quizzes once your accuracy is consistent.
The explanations are especially useful when you want to connect exam wording to the responsibilities and scenarios described in the official certification guidance. Use the free preview first, then unlock the full question bank when you are ready to build a complete study routine.
The AWS Certified Solutions Architect – Associate (SAA-C03) is an intermediate-level credential that validates a candidate's ability to design well-architected cloud solutions on Amazon Web Services. The exam covers the four pillars of the AWS Well-Architected Framework as they apply to solution design: security, resiliency, high performance, and cost optimization. Candidates are tested on their ability to select appropriate AWS services and configurations to meet both current business requirements and future projected needs across a wide range of architectures—from simple single-tier applications to complex, distributed, multi-account environments.
The SAA-C03 version of the exam was introduced in 2022 and reflects the current AWS service landscape, including modern serverless, container-based, and hybrid cloud patterns. It does not require deep hands-on coding experience but does expect familiarity with core AWS services such as EC2, S3, RDS, VPC, IAM, Lambda, CloudFront, Route 53, and many others. The certification is valid for three years and can be renewed by retaking the exam or by earning the AWS Certified Solutions Architect – Professional, which automatically recertifies this associate-level credential.
This certification is designed for individuals who work in or aspire to a solutions architect role, typically with at least one year of hands-on experience designing cloud solutions using AWS services. It is well-suited for cloud engineers, systems architects, DevOps engineers, and infrastructure professionals who regularly make decisions about AWS service selection, architecture patterns, and deployment strategies.
Candidates with 1–3 years of general IT experience (networking, systems administration, or software development) who are transitioning into cloud roles also pursue this certification as a foundational cloud credential. Those with no prior IT experience are generally advised to first complete the AWS Certified Cloud Practitioner exam before attempting the SAA-C03.
AWS does not enforce any formal prerequisites for the SAA-C03 exam, but strongly recommends at least one year of hands-on experience designing distributed systems on AWS. Candidates should be comfortable navigating the AWS Management Console and AWS CLI, and should have practical familiarity with core service categories including compute (EC2, Lambda), storage (S3, EBS, EFS), databases (RDS, DynamoDB), networking (VPC, Route 53, CloudFront), and identity and access management (IAM).
A working understanding of general IT concepts—such as DNS, TCP/IP networking, relational vs. NoSQL databases, and load balancing—is also important. Candidates who are new to AWS should consider completing AWS Skill Builder's foundational courses or the AWS Cloud Practitioner certification before sitting for this exam. Basic familiarity with programming concepts is helpful but not required.
The SAA-C03 exam consists of 65 questions delivered in 130 minutes, of which 50 are scored and 15 are unscored pilot questions used by AWS to evaluate future exam content. The unscored questions are not identified during the exam, so all questions should be treated equally. Question types include single-response multiple choice (one correct answer from four options) and multiple-response questions (two or more correct answers from five or more options).
The exam is available through Pearson VUE, either at a physical testing center or via online proctoring. It is offered in ten languages: English, French (France), Italian, Japanese, Korean, Portuguese (Brazil), Spanish (Latin America), Spanish (Spain), Simplified Chinese, and Traditional Chinese. Scores are reported on a scale of 100–1,000 using a compensatory scoring model, meaning candidates do not need to achieve a passing score in each individual domain. The minimum passing score is 720. The exam fee is $150 USD.
The AWS Certified Solutions Architect – Associate is consistently ranked among the highest-value IT certifications globally. It is the most widely held AWS credential, with approximately 54% of AWS professionals holding it according to Jefferson Frank's annual survey. Common job titles pursued by SAA-C03 holders include Cloud Solutions Architect, Cloud Engineer, DevOps Engineer, and Cloud Infrastructure Engineer. In the United States, professionals with this certification report average salaries ranging from approximately $125,000 to over $155,000 per year depending on experience, geography, and employer, with some senior roles reaching $175,000 or more.
The certification is recognized across industries including financial services, healthcare, government, and technology, and is frequently listed as a preferred or required qualification in cloud job postings. It serves as a strong foundation for advancing to more specialized AWS certifications such as the Solutions Architect – Professional, DevOps Engineer – Professional, or specialty-level exams in areas like security, networking, or machine learning. Relative to comparable cloud credentials from Microsoft (AZ-104) and Google (Professional Cloud Architect), the SAA-C03 is broadly considered the most recognized associate-level cloud architecture certification in the market.
5 sample questions with answers and explanations. Start a practice session to test yourself across all 600 questions.
Preview — answers shown1. GlobalApp DR runs a web application on EC2 instances behind an ALB, with data in Amazon Aurora, all in one primary AWS Region. They need a disaster recovery (DR) solution allowing for up to 30 minutes of downtime and potential data loss. The DR infrastructure should not handle load when the primary is healthy. What DR strategy is suitable?
Explanation
This describes a warm standby DR strategy. Deploying the application infrastructure (EC2, ALB) in the DR region at a minimal scale (or ready to scale) keeps it prepared. An Aurora global database allows for low-latency replication to a secondary cluster in the DR region, which can be promoted if the primary region fails. Amazon Route 53 health checks can monitor the primary region and automatically failover DNS to the DR region's ALB. This meets the RTO/RPO requirements while minimizing active resource usage in the DR region during normal operations.
2. EC2InstanceRecovery Corp.'s infrastructure consists of hundreds of Amazon EC2 instances that utilize Amazon Elastic Block Store (Amazon EBS) for their storage needs. A solutions architect is tasked with ensuring that every single EC2 instance can be fully recovered after a disaster, including its configuration and data. What is the most straightforward and operationally efficient method to meet this comprehensive instance recovery requirement across the entire fleet?
Explanation
AWS Backup is a fully managed backup service designed to centralize and automate data protection across various AWS services, including Amazon EC2 instances. When you back up an EC2 instance with AWS Backup, it creates an Amazon Machine Image (AMI) of the instance and snapshots of its attached EBS volumes. You can set up a backup plan to schedule these backups regularly (e.g., nightly) and define retention policies. AWS Backup also simplifies the restoration process, allowing you to restore entire EC2 instances from these backups. For disaster recovery, you can configure AWS Backup to copy these backups to another AWS Region. This provides a holistic and operationally efficient solution for EC2 instance recovery with minimal manual effort.
3. ContainerApp Orchestration is designing a containerized application using Amazon ECS. The application needs access to a shared file system that is highly durable and can recover data to another AWS Region with an RPO of 8 hours. The file system must offer a mount target in each Availability Zone within a Region. AWS Backup will manage replication to the other Region. Which storage solution is appropriate?
Explanation
Amazon Elastic File System (Amazon EFS) provides scalable, shared file storage that can be mounted by multiple ECS tasks (via EC2 launch type or Fargate with EFS integration). EFS Standard offers high durability and provides mount targets in each Availability Zone within a region for high availability. AWS Backup supports backing up EFS file systems and can copy these backups to another AWS Region, helping to meet the RPO and DR requirements.
4. HybridStorage Corp. has over 5 TB of file data on on-premises Windows file servers, actively used by users and applications. They are migrating Windows workloads to AWS and require low-latency access to both AWS and on-premises file storage during this transition, with minimal changes to existing file access patterns and minimal operational overhead. They use an AWS Site-to-Site VPN for connectivity. What solution should be implemented?
Explanation
This solution provides a hybrid storage environment. Amazon FSx for Windows File Server on AWS offers a fully managed Windows file system in the cloud. The FSx File Gateway, deployed on-premises, provides low-latency access to data stored in FSx for Windows File Server by caching frequently accessed files locally. This allows both cloud and on-premises workloads to access the same file data using standard SMB protocols with minimal changes to access patterns and reduced operational overhead compared to managing synchronization manually.
5. A new data analytics platform is being designed to store vast amounts of historical sales data. This data will be queried infrequently, primarily for annual trend analysis. When queried, retrieval times of several hours are acceptable. The primary goal is to minimize long-term storage costs. Which Amazon S3 storage class is MOST suitable for this scenario?
Explanation
S3 Glacier Deep Archive is the lowest-cost storage class in Amazon S3 and is specifically designed for long-term data archival and digital preservation where data is rarely accessed (e.g., once or twice a year) and retrieval times of 12 hours or more are acceptable. Given the requirements of infrequent access, acceptable retrieval times of several hours, and the primary goal of minimizing long-term storage costs for vast amounts of historical data, S3 Glacier Deep Archive is the most suitable and cost-effective choice.
AWS Certified CloudOps Engineer - Associate (SOA-C03)
SOA-C03 · 2141 questions
AWS Certified SysOps Administrator - Associate (SOA-C02)
SOA-C02 · 2141 questions
AWS Certified Security - Specialty (SCS-C03)
SCS-C03 · 2069 questions
AWS Certified Generative AI Developer - Professional (AIP-C01)
AIP-C01 · 1978 questions
AWS Certified Advanced Networking - Specialty (ANS-C01)
ANS-C01 · 1453 questions
AWS Certified Data Engineer - Associate (DEA-C01)
DEA-C01 · 1120 questions
$17.99
One-time access to this exam