Home › Certifications › AWS Certified CloudOps Engineer — Associate (SOA-C03)
174 multiple-choice questions, 120 flashcards and 10 scenario simulations, organised into 5 chapters, written to the AWS Certified CloudOps Engineer blueprint. Every question carries a full rationale.
Study AWS Certified CloudOps Engineer — Associate (SOA-C03) in CoStudy →
AWS Certified CloudOps Engineer — Associate (SOA-C03) Exam Guide (public, aws.amazon.com). Renamed + re-weighted from AWS Certified SysOps Administrator — Associate (SOA-C02) effective 2026; legacy content retained and remapped where topics carried over. 5 content domains: 1) Monitoring, Logging, Analysis, Remediation, and Performance Optimization (22% — folds in the former standalone Cost/Performance domain), 2) Reliability and Business Continuity (22%), 3) Deployment, Provisioning, and Automation (22%), 4) Security and Compliance (16%), 5) Networking and Content Delivery (18%). MCQs reference public AWS documentation and SOA-C03 exam objectives.
CoStudy's AWS Certified CloudOps Engineer — Associate (SOA-C03) bank holds 304 items organised into 5 chapters that follow the published blueprint. Every multiple-choice question carries a written rationale explaining why the correct answer is correct and why each distractor is tempting but wrong, and the bank includes 10 scenario-based simulations.
Each chapter follows a domain of the published exam outline. Practise one on its own:
A sample of 12 multiple-choice questions from the bank, with the full rationale shown.
An Auto Scaling group should scale out on custom application queue depth published from a Lambda every minute to a CloudWatch metric.
Answer: B — Attach a target-tracking policy referencing the custom queue-depth CloudWatch metric
A) Scheduled is time-based, not demand-based. B) Correct — target tracking supports any CloudWatch metric. C) Health checks are for health, not scaling. D) Lifecycle hooks pause transitions, not trigger scaling.
An alarm should transition to ALARM only after three consecutive 5-minute breaches so a single spike does not page the on-call engineer at night.
Answer: B — Configure the alarm with an evaluation period of three and a period of 300 seconds
A) Reinvents alarm evaluation. B) Correct — datapoints-to-alarm + evaluation periods control the M-of-N flap suppression. C) EventBridge cannot poll metrics. D) Missing-data behavior addresses gaps, not spike suppression.
A rare log-line pattern indicates an internal error and must page ops within one minute of appearing in a CloudWatch log group.
Answer: B — Add a metric filter that increments on the pattern and alarm at threshold one
A) Firehose does not send email. B) Correct — metric filter + alarm converts a pattern match into an alarm quickly. C) 5-minute polling misses the 1-minute goal. D) Anomaly on volume misses low-rate patterns.
An RDS deployment must survive an AZ failure with automatic failover in the same region and no application-driven read-replica promotion logic.
Answer: A — Enable Multi-AZ deployment with a synchronous standby in a second AZ
A) Correct — Multi-AZ maintains a synchronous standby; RDS automates DNS failover. B) Read replicas are async and require manual promotion. C) Global Database targets multi-region DR, overkill for single-AZ failure. D) EBS Multi-Attach is single-AZ only.
A batch workload must survive Spot interruptions gracefully by checkpointing progress and resuming on a fresh instance when a two-minute notice arrives.
Answer: C — Handle EC2 Spot interruption notices via IMDS and checkpoint state to S3 before shutdown
A) Direction reversal — eliminates the requirement instead of meeting it. B) Lifecycle hooks can't pause Spot terminations. C) Correct — the 2-minute Spot notice via IMDS is the checkpoint trigger. D) Auto Recovery doesn't apply to Spot terminations.
A CloudFormation stack update fails partway through with a subnet CIDR conflict, leaving the stack in UPDATE_ROLLBACK_FAILED. What is the MOST direct first remediation step per SOA-C03 Domain 3 guidance?
Answer: C — Identify and skip the specific resource causing the rollback failure via continue-update-rollback, after confirming its actual state
A) Destroys resources unnecessarily and risks data loss for a state that's usually recoverable. B) Manual console edits without reconciling the stack's tracked state often make the drift worse and don't resolve the ROLLBACK_FAILED status. C) Correct — continue-update-rollback with resources-to-skip (after verifying the resource's real state) is the documented path out of UPDATE_ROLLBACK_FAILED. D) CloudFormation does not auto-retry a failed rollback; drift detection is a separate, unrelated feature.
Per the SOA-C03 exam guide, which THIRD-PARTY tools does AWS explicitly call out under Domain 3's 'manage third-party tools to automate resource deployment' skill?
Answer: C — Terraform and Git
A) Ansible isn't the pair AWS names in this skill statement. B) Chef/Puppet are configuration-management tools, not the ones named here (and OpsWorks Chef integration is being deprecated, separate from this skill). C) Correct — the SOA-C03 exam guide explicitly names Terraform and Git as example third-party tools for this skill. D) Jenkins/CircleCI are CI/CD tools, not the pair called out in this specific skill statement.
A CI/CD pipeline must invalidate a CloudFront cache after each deployment so users see fresh static assets before TTL expiry.
Answer: A — Add a pipeline stage that calls CreateInvalidation on the CloudFront distribution paths
A) Correct - invalidations at deploy time expire cached paths. B) Direction reversal - kills caching. C) Half-right - hash busting works for JS/CSS but not for top-level HTML. D) CloudFront does not auto-detect origin changes.
Sensitive workloads must run on dedicated hardware for compliance, with instances placed on physical servers not shared with other AWS customers.
Answer: A — Launch instances with Dedicated Host tenancy managed by the customer directly
A) Correct — Dedicated Host tenancy gives customer-visible physical server placement. B) Placement groups govern placement across hardware, not tenancy. C) Encryption is unrelated to tenancy. D) Tagging is bookkeeping.
A workload must send TLS-encrypted traffic to an internal endpoint using a certificate issued by an internal PKI trusted only inside the org.
Answer: B — Provision a private certificate via AWS Certificate Manager Private CA and export it now
A) Public CA costs and is not tied to internal PKI. B) Correct - ACM Private CA issues internal-trust certificates. C) Public cert is not internal-PKI-issued. D) Bucket encryption is unrelated to TLS.
A team wants to allowlist S3 access from a VPC to only the specific bucket used by their workload, blocking other buckets entirely.
Answer: D — Attach a VPC endpoint policy on the S3 gateway endpoint that allows only that bucket ARN
A) IAM scopes the identity, not the network. B) Half-right; bucket policy controls the bucket, not other buckets. C) SGs don't scope by bucket. D) Correct - VPC endpoint policy limits which buckets are reachable through the endpoint.
A media site wants CloudFront to fail over from a primary origin to a secondary origin when the primary returns 5xx errors.
Answer: D — Enable an origin group with primary and secondary and configured failover codes
A) Lambda@Edge can retry but is more complex than the native origin group. B) DNS TTL delays failover; not the CloudFront-native path. C) Error pages serve static content, not a secondary origin. D) Correct — CloudFront origin groups implement native origin failover on configured status codes.
6 sample cards from the 120 in the bank.
AWS GuardDuty?
Threat detection. Analyzes CloudTrail, VPC Flow Logs, DNS logs for anomalies.
VPC components?
Subnets, route tables, IGW, NAT gateway/instance, NACLs, security groups, VPC peering.
Need centralized log management for 100 accounts?
Org-wide CloudWatch Logs subscription → Kinesis Firehose → S3 + analysis.
EC2 placement groups?
Cluster (low latency, same AZ), Spread (across hardware), Partition (logical groups).
Config aggregator?
Centralizes Config data across accounts and regions.
Lambda can't access RDS — checks?
Same VPC? SG allows port? Subnets configured? IAM permissions?
These samples are a small slice. The full bank runs flashcards, multiple choice and timed mock exams with per-chapter progress tracking, on the web and in the iOS app.
Open AWS Certified CloudOps Engineer — Associate (SOA-C03) →
The AWS Certified CloudOps Engineer — Associate (SOA-C03) bank holds 304 items: 174 multiple-choice questions, 120 flashcards and 10 scenario-based simulations. 18 of them are on this page to read free, with no signup.
Yes. Every multiple-choice item carries a written rationale that states the controlling principle behind the correct answer and then addresses each wrong option in turn — why it tempts and precisely where it fails. Knowing why the plausible answer was wrong is worth more than knowing which letter was right.
It is organised into 5 chapters that follow the published exam blueprint: Monitoring, Logging, Analysis, Remediation, and Performance Optimization; Reliability and Business Continuity; Deployment, Provisioning, and Automation; Security and Compliance; Networking and Content Delivery. The number of questions in each chapter is proportional to that domain's published weight, so working through the bank exposes you to roughly the mix the real exam uses.
AWS Certified CloudOps Engineer — Associate (SOA-C03) Exam Guide (public, aws.amazon.com). Renamed + re-weighted from AWS Certified SysOps Administrator — Associate (SOA-C02) effective 2026; legacy content retained and remapped where topics carried over. 5 content domains: 1) Monitoring, Logging, Analysis, Remediation, and Performance Optimization (22% — folds in the former standalone Cost/Performance domain), 2) Reliability and Business Continuity (22%), 3) Deployment, Provisioning, and Automation (22%), 4) Security and Compliance (16%), 5)…
The samples on this page are free to read in full, rationales included, with no account. The complete 304-item bank, the timed mock exams and per-chapter progress tracking are part of CoStudy on the web and in the iOS app.
Last reviewed 2026-08-22. Banks are written against the certifying body's published exam outline and re-checked when that outline changes — exams get renumbered, retired and reweighted, and a bank written to a superseded outline teaches the wrong proportions. Figures that are re-indexed annually are deliberately not asserted as rules; the questions test the governing principle instead.
This bank is written against AWS's published exam material. Check the AWS Certification exam guides for the current outline, fees and eligibility rules — those change, and the certifying body is the only authority on them. CoStudy is not affiliated with AWS.