EnglishDeutschFrançaisEspañolPortuguês

AWS · SOA-C03 · Intermediate

AWS CloudOps Engineer - Associate (SOA-C03) — Practice Questions and Mock Exam

Prepare for SOA-C03 with original practice questions and clear answer explanations. Ask Alex, your AI tutor, when you need more detail, use your results to identify topics to review, and practice your pacing with timed mock exams.

65Mock exam questions
130minTime limit
720/ 1000Passing score

Checked against AWS · September 2026 · Current exam version

About the exam

The AWS Certified CloudOps Engineer – Associate validates the ability to deploy, manage, and operate workloads on AWS. It covers monitoring, logging, and performance optimization, reliability and business continuity, deployment and provisioning automation, security and compliance, and networking and content delivery — the five domains behind day-to-day AWS operations. Candidates must demonstrate proficiency in using CloudWatch, AWS Systems Manager, and infrastructure-as-code tools to keep production workloads running.

This certification is designed for systems administrators and operations professionals with at least one year of hands-on experience in deployment, management, troubleshooting, networking, and security on AWS. It demonstrates the ability to keep AWS workloads reliable, secure, and cost-effective in daily operations.

Try five SOA-C03 questions

Try five practice questions from the app’s current AWS Certified CloudOps Engineer - Associate question bank, with answers and explanations.

Monitoring, Logging, Analysis, Remediation, and Performance Optimization1 / 5

A company runs a production application on EC2 instances. The SysOps administrator needs to automatically remediate a common issue where instances become unresponsive due to a known application bug. When CloudWatch detects high CPU utilization above 95% for more than 10 minutes, the system should automatically restart the application service on the affected instance. Which solution requires the LEAST operational overhead?

AlexFull explanation from Alex

All four options would eventually restart something, so the question is which one asks you to build and maintain the least. The CloudWatch alarm already knows how to change state on a threshold, EventBridge already knows how to route that state change, and Systems Manager Automation already knows how to run a documented sequence of steps on a managed instance, since you start an automation by naming a runbook as the target of an EventBridge event. Nothing custom is written, nothing new is installed, and the runbook restarts just the application service rather than the whole host.

The alternatives each add work or overreach. A scheduled rule polling every minute is a cron job you now own, re-implementing what the alarm already does and billing for an invocation every minute whether anything is wrong or not. A function that opens a shell session to the instance means managing keys, network paths and error handling for a mechanism the agent already provides. And the built-in alarm action that reboots the instance is the bluntest of all, taking the whole machine down when only one service needed restarting.

Exam tip: least operational overhead almost always means composing managed services. Prefer the answer that wires existing services together over one that introduces code, credentials, or a polling loop you have to maintain.

Sourcedocs.aws.amazon.com

Networking and Content Delivery2 / 5

A SysOps administrator is troubleshooting an issue where EC2 instances in a private subnet can reach the internet but cannot access an S3 bucket in the same Region. The S3 bucket policy allows access from the VPC. Network ACLs allow all traffic. What should the administrator check?

AlexFull explanation from Alex

Work backwards from what the scenario already rules out. General internet access proves routing works. The network access control lists are open, so the subnet is not filtering. The S3 bucket policy allows access from the VPC, and that is the clue, because a policy written that way is satisfied only when the request actually arrives over the private endpoint path. Traffic leaving through a NAT gateway reaches the public S3 endpoint and carries no endpoint context, so the policy denies it even though the packets arrive.

That makes the VPC endpoint for S3 the thing to check. Does a gateway endpoint for S3 exist in this VPC, and does its route table association include the private subnet? Creating the endpoint is only half the job; you then add it as a target in the route table for traffic destined for S3, and a subnet whose route table was never associated keeps using the internet path.

The other three do not fit the symptoms. NAT gateway bandwidth would cause slowness rather than a flat denial. Bucket versioning is a data-protection setting with no bearing on access. The instance role permission is a plausible-sounding trap, but the stem tells you the bucket policy is the control in play.

Exam tip: when connectivity works generally and one service fails, look for a condition in the resource policy that constrains the path, not just the principal.

Sourcedocs.aws.amazon.com

Reliability and Business Continuity3 / 5

A SysOps administrator manages an application that stores session data in Amazon ElastiCache for Redis. The administrator needs the Redis cluster to survive an Availability Zone failure with automatic failover and minimal data loss. Which configuration should be used?

AlexFull explanation from Alex

Surviving the loss of an Availability Zone needs two things: a copy of the data somewhere else, and something that promotes that copy automatically. Enabling cluster mode with replicas spread across multiple Availability Zones provides the copy, and Multi-AZ auto-failover provides the promotion, detecting that the primary is unreachable and electing a replica in a surviving zone without an operator in the loop. That is why this configuration improves fault tolerance in exactly the failure the scenario describes.

Notice the careful wording about data loss. Replication to replicas is asynchronous, so writes the primary acknowledged an instant before it failed may never have reached a replica. The defensible claim is minimal data loss, not zero, and an answer promising zero loss from asynchronous replication is usually the wrong one.

The distractors miss on availability. Daily snapshots are a backup, useful for restoring after corruption but measured in hours of loss and a manual restore. Independent standalone nodes in different zones share no data, so losing one loses whatever sessions lived there. Append-only persistence on a single node survives a process restart on that node, but the node is still in one zone and there is nothing to fail over to.

Exam tip: separate durability from availability. Snapshots and persistence give durability; replicas plus automatic promotion give availability.

Sourcedocs.aws.amazon.com

Deployment, Provisioning, and Automation4 / 5

A SysOps administrator needs to automate the process of creating a new S3 bucket whenever a specific tag is applied to an EC2 instance. Which combination of AWS services enables this event-driven automation?

AlexFull explanation from Alex

Applying a tag to an instance is an API call, and that call is the hook the whole automation hangs on. Tagging goes through the Amazon EC2 CreateTags action, AWS CloudTrail logs that call as a management event, CloudTrail delivers its logged events to Amazon EventBridge, and an EventBridge rule whose event pattern matches that specific API call and tag key invokes AWS Lambda as its target. The Lambda function then creates the S3 bucket through the SDK. Nothing polls, nothing runs on a timer, and the reaction happens because the API call happened, which is what event-driven means.

The other three combinations break at their first step. Amazon CloudWatch metrics are numeric time series and no metric carries a tag key and value, so nothing in that chain can detect the change, and putting Amazon SNS in front of AWS Lambda only forwards a notification that was never generated. An Amazon EventBridge scheduled rule polling for tags is the opposite of event-driven: it wakes on a timer, adds latency up to the polling interval, and runs constantly when nothing has changed, so AWS Step Functions behind it inherits that delay. The AWS Config option is the closest to plausible, because AWS Config does evaluate resource configuration changes, but routing through AWS Systems Manager and AWS CloudFormation to create one bucket is far heavier machinery than the scenario needs, and it drops the EventBridge pattern matching that does the actual filtering.

Exam tip: for a requirement shaped like when this happens, do that, the default AWS answer is CloudTrail records the API call, EventBridge matches the event pattern, and Lambda performs the action. Recognizing that triple answers most event-driven automation questions on sight.

Sourcedocs.aws.amazon.com

Security and Compliance5 / 5

A SysOps administrator needs to implement encryption in transit for an application that communicates between EC2 instances and an Application Load Balancer. The administrator must use certificates managed by AWS. Which service and configuration should be used?

AlexFull explanation from Alex

Read the two constraints together: encryption in transit, and certificates managed by AWS. AWS Certificate Manager, or ACM, provisions public certificates, validates them and renews them automatically, and ACM integrates with Elastic Load Balancing so you can deploy the certificate straight onto the load balancer. You attach the provisioned certificate to the ALB HTTPS listener and the platform handles the rest of the lifecycle, with no key material to copy onto instances and no renewal date to remember.

The distractors each break one of the constraints. Self-signed certificates generated on every instance with OpenSSL are not managed by AWS at all, and clients reject them unless you distribute trust by hand. AWS KMS creates and controls cryptographic keys; it is not a certificate authority and does not generate TLS certificates. Uploading IAM server certificates still works for older setups, but those certificates were obtained somewhere else and you own the renewal, which is precisely the management burden the question tells you to avoid.

Exam tip: certificates managed by AWS plus a load balancer is a fixed pairing. If a question then adds encryption between the load balancer and the instances behind it, treat the back-end connection as a separate decision from the listener certificate.

Sourcedocs.aws.amazon.com

323 practice questions

The Pass-IT question pool gives you material to practice for SOA-C03. A Pass-IT mock exam uses 65 questions and a 130-minute time limit; these are practice settings.

Pool details: SOA-C03

Exam details checked against AWSSeptember 10, 2026

date of the last check against the official AWS source

Passing score720 / 1,000

as published by AWS

Objectives in the guide13 objectives listed in the official guide

across 5 domains in the official exam guide

Pool size323 questions

= The pool size is equivalent to 4 sets of 65 questions; this does not mean that each mock exam uses a separate set.

Blueprint domains5 domains in the exam blueprint

Monitoring, Logging, Analysis, Remediation, and Performance Optimization 80 · Reliability and Business Continuity 67 · Deployment, Provisioning, and Automation 61 · Security and Compliance 58 · Networking and Content Delivery 57

Recorded as checked against sources323 of 323

questions recorded as having their answer, options, and explanation checked against official AWS documentation

What's on the exam

Three domains tie for the largest share at 22% apiece: Monitoring, Logging, Analysis, Remediation, and Performance Optimization tests alerting pipelines and squeezing more throughput out of storage, compute, and database tiers; Reliability and Business Continuity covers elastic scaling, high availability, and backup and restore strategy; and Deployment, Provisioning, and Automation covers standing up infrastructure through CloudFormation, the AWS CDK, or an external tool such as Terraform, then automating what happens to it afterward.

Networking and Content Delivery takes 18%, covering VPC configuration, DNS, content delivery, and connectivity troubleshooting. Security and Compliance closes the blueprint at 16% — the smallest domain, but IAM, multi-account guardrails, encryption, and remediation of security findings are all inside it, and no domain here is small enough to skip.

Exam blueprint: SOA-C03

Monitoring, Logging, Analysis, Remediation, and Performance Optimization22%

Build alerting and log pipelines with AWS's monitoring toolset, act on what those signals reveal to fix failing resources, and tune compute, storage, and database tiers for better throughput and lower cost.

≈ 12 h
Reliability and Business Continuity22%

Scale compute and databases elastically with caching and auto scaling, keep environments running through load balancing and multi-AZ deployments, and build backup and restore strategies that hit recovery time and point objectives.

≈ 12 h
Deployment, Provisioning, and Automation22%

Stand up and maintain AWS infrastructure using CloudFormation, the CDK, or third-party tools like Terraform, then keep it running smoothly through event-driven automation and Systems Manager.

≈ 12 h
Security and Compliance16%

Configure account-level access controls and cross-account guardrails, keep them under continuous compliance checks, and lock down data with encryption, managed secrets, and prompt remediation of security findings.

≈ 9 h
Networking and Content Delivery18%

Configure VPCs and private connectivity to optimize network performance, set up domain resolution and content delivery through Route 53 and CloudFront, and chase down connectivity problems using VPC and CloudWatch diagnostics.

≈ 10 h

Exam format and question types

The exam draws 65 questions (50 scored, 15 unscored) from multiple-choice and multiple-response formats inside a 130-minute window. Every scored item — whether multiple-choice or multiple-response — is worth one point, and a blank answer is marked wrong, so there is no benefit to skipping. At roughly 2 minutes per question, the exam rewards operational fluency: recognizing the right CloudWatch, Systems Manager, or troubleshooting step for a described symptom rather than recalling a service's full feature list.

Question types: SOA-C03

Multiple Choice65%

Select the single answer that best meets the question’s requirements.

Multiple Response35%

Select multiple answers. Follow the question’s instructions on how many to choose.

See AWS for official question-format information. The shares shown describe the Pass-IT practice pool; they do not establish the proportions on the official exam.

Preparing for SOA-C03

The exam runs through Pearson VUE, either at a testing center or online with a remote proctor, and is offered in English, Japanese, Korean, and Simplified Chinese. Certification holds for 3 years; renewal means passing a recertification exam before it expires, or earning a higher-level AWS certification, which renews it automatically.

Preparation and logistics: SOA-C03

Preparation

Illustrative study time35–85 h

illustrative planning range: 35 h with relevant experience to 85 h when starting out; your needs may fall outside this range

LevelIntermediate

Taking and maintaining the certification

DeliveryPearson VUE testing center or online proctored exam
Retake policy14-day waiting period between exam attempts, no limit on total number of attempts
Certification validity3 years

Pass a recertification exam before the 3-year expiration date, or earn a higher-level AWS certification to automatically renew

Common pitfalls

Topics to review: SOA-C03

  1. 01VPC Connectivity

    Confusing stateful security groups with stateless NACLs, and skipping VPC Flow Logs during troubleshooting, leads to wrong answers on network-connectivity scenarios.

  2. 02CloudWatch Gaps

    Not knowing the difference between CloudWatch Metrics, Alarms, Logs, and Dashboards leads to wrong answers on monitoring and alerting questions.

  3. 03Automation Confusion

    Mixing up Systems Manager, CloudFormation, and OpsWorks capabilities and when to use each for infrastructure automation tasks.

  4. 04Backup Strategies

    Confusing EBS snapshots, AMI creation, AWS Backup policies, and cross-region replication strategies for disaster recovery scenarios.

  5. 05Console Inexperience

    Lacking hands-on familiarity with the AWS console interface makes console-based troubleshooting scenarios much harder under time pressure.

Frequently asked questions

How long is the AWS Certified CloudOps Engineer - Associate exam?

The SOA-C03 exam has 65 questions and a 130-minute time limit.

What is the passing score for AWS Certified CloudOps Engineer - Associate?

The passing score for the SOA-C03 exam is 720 / 1000.

Which pitfalls should I review when preparing for AWS Certified CloudOps Engineer - Associate?

Topics to review include VPC Connectivity, CloudWatch Gaps, Automation Confusion, Backup Strategies, Console Inexperience. Work through examples to check that you understand the distinctions and can explain your answer.

SOA-C03 or SAA-C03 — which fits an operations role?

SOA-C03 is the operations exam: monitoring and remediation, reliability, and deployment automation each carry 22% of it. SAA-C03 asks you to design an architecture rather than keep one running. If your week is alarms, runbooks and capacity rather than diagrams, SOA-C03 is the closer match.

How is SOA-C03 weighted?

Three domains tie for the largest share at 22% each: monitoring and remediation, reliability and business continuity, and deployment and automation. Networking and content delivery takes 18% and security and compliance 16%. There is no dominant domain, so preparation that skips one loses roughly a fifth of the exam.

Does SOA-C03 need renewing?

Yes, every three years. Either sit the current exam again before it expires or earn a higher-level AWS certification, which renews it automatically. AWS has no continuing-education alternative.

What happens if you fail SOA-C03?

You can book again after 14 days. AWS sets no maximum number of attempts, so the waiting period is the whole constraint.

What should you know before SOA-C03?

There is no formal prerequisite. The catalog budget is about 55 hours, and the questions assume you have used CloudWatch, Systems Manager and Auto Scaling rather than only read their documentation. Operational experience shortens that budget more than any course does.

One certification, 12 months

Practice for SOA-C03

Focus your practice on one certification, or choose Pro to practice across all certifications.

Start a free practice sessionTry the first 20 questions without a card to see whether the practice suits you.

For eligible purchases: money-back guarantee if you fail your exam.

View guarantee terms →