EnglishDeutschFrançaisEspañolPortuguês

AWS · SOA-C03 · Intermediate

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

Practice with realistic SOA-C03 questions aligned to the exam objectives. Alex explains every answer, and your readiness score shows what to study next.

65Questions
130minTime Limit
720/ 1000Pass Score

Checked against AWS · August 2026Current 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.

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%

Pick the single best answer from four or five options — the exam's bread and butter.

Multiple Response35%

More than one answer is correct and you need all of them; the question tells you how many to pick.

AWS confirms these question types — a percentage split is not published; the shares reflect our exam-aligned question pool.

Try five SOA-C03 questions

Five questions straight from our AWS Certified CloudOps Engineer - Associate pool. Answer one — Alex explains the why.

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 questions, built like the exam

Every domain of the SOA-C03 exam has enough questions in the pool to practice it in depth. A mock exam asks 65 questions in one sitting, on the same 130-minute clock as the real thing.

Audit record: SOA-C03

Pass mark720 / 1,000

as published by AWS

Blueprint coverage13 official objectives

across 5 domains, from the official exam guide

Pool size323 questions

= 4 full practice exams of 65 questions each — never the same question twice

Domain coverageall 5 domains at official weight

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

Canonically validated323 of 323

each verified against official AWS documentation — answer, options and explanation, source cited

Methodology openly documented.How questions are made →

Preparing for SOA-C03

How long you'll need depends on how much hands-on experience you bring. The rest is set by the vendor: how the exam is delivered, how soon you can retake it, and how long the credential stays valid.

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.

Your plan: SOA-C03

Preparation

Study time35–85 h

typically around 35 h if you already work with this stack, around 85 h coming to it fresh

LevelIntermediate

Exam day & after

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

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

The hours are our own planning estimate — AWS publishes no preparation time for this exam. A starting point for your calendar, not a target.

Common pitfalls

This exam is written from an operator's chair: candidates who've read about a service without running it struggle with the monitoring, remediation, and troubleshooting scenarios that make up most of the exam. Telling CloudWatch Metrics, Alarms, Logs, and Dashboards apart under scenario pressure is a common stumbling point, and so is distinguishing Systems Manager, CloudFormation, and OpsWorks capabilities when a question asks which one automates a specific task. EBS snapshots, AMI creation, AWS Backup policies, and cross-region replication all solve different disaster-recovery requirements, and confusing them costs points on backup-strategy questions; console fluency also matters more than it seems, since scenario questions assume a working feel for how these services behave in the AWS console, not a textbook description of them.

Watch list: 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.

Pass-IT trains you on exactly these weak spots — adaptive & spaced →

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?

You need 720 / 1000 to pass the SOA-C03 exam.

What are common mistakes on the AWS Certified CloudOps Engineer - Associate exam?

Common pitfalls include: VPC Connectivity, CloudWatch Gaps, Automation Confusion, Backup Strategies, Console Inexperience. Focus study time on these areas to avoid losing points.

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.

Pass-IT is an independent study tool, not affiliated with or endorsed by AWS; AWS and exam names are trademarks of their respective owners.

One certification. One payment.

Full SOA-C03 access

Get the full question pool for this certification. Alex explains every answer, and your readiness score shows what to work on next.

Buy SOA-C03 access for $29.99One payment. Lifetime access to this certification.
Take the free readiness check20 questions. No card. See what to study before you buy.

Reach 80% readiness and pass — or your money back.

How the score works →