- A
Amazon Simple Queue Service (SQS)
Amazon SQS is a fully managed message queue service that decouples application components. Front-end servers can send job requests to an SQS queue, and back-end servers process them asynchronously. Messages are stored durably across multiple Availability Zones, and the front end can continue sending requests without waiting for the back end to be ready. This correctly meets the requirement for a durable, fully managed decoupling solution.
- B
Amazon Simple Notification Service (SNS)
Why wrong: Amazon SNS is a pub/sub messaging service used to send notifications to a large number of subscribers (e.g., email, SMS, HTTP endpoints). While SNS can be used to trigger asynchronous processing, it is not designed for buffering job requests between specific front-end and back-end components. SNS pushes messages to all subscribers, and if a subscriber is unavailable, the message may be lost (unless a dead-letter queue is configured). SQS is the better choice for durable, decoupled job queues.
- C
Amazon Kinesis Data Streams
Why wrong: Amazon Kinesis Data Streams is designed for real-time streaming of large amounts of data, such as clickstreams, IoT telemetry, or log data. It is not intended for simple job queueing between application tiers. Kinesis is more complex to set up and manage than SQS for this use case, and it is optimized for high-throughput, ordered data processing, not for decoupling one-to-one job submissions.
- D
AWS Step Functions
Why wrong: AWS Step Functions is a serverless orchestration service that lets you coordinate multiple AWS services into a workflow. It is used to define state machines that sequence tasks, add branching logic, and handle errors. While Step Functions can call SQS, it is not itself a queue. It does not store messages durably for later processing by a fleet of workers; rather, it directly invokes services. For simple decoupling of front-end and back-end, SQS is the appropriate choice.
Quick Answer
Amazon Simple Queue Service (SQS) is the correct choice because it provides a fully managed, durable message queue that enables you to decouple frontend and backend tiers asynchronously. By placing job requests into an SQS queue, the front-end EC2 instances can continue handling traffic spikes without waiting for backend availability, while the backend application servers poll and process messages at their own pace. This scenario directly tests your understanding of decoupling architectures on the AWS Certified Cloud Practitioner CLF-C02 exam, often appearing in questions about scaling and fault tolerance. A common trap is choosing Amazon SNS or Amazon Kinesis, but remember that SNS is for pub/sub notifications (not durable job queues) and Kinesis is for real-time streaming, not simple decoupling. For this exam, think of SQS as the "buffer" that absorbs traffic bursts and ensures no job is lost. Memory tip: SQS = "Store, Queue, Serve" — it stores messages durably, queues them for processing, and serves them to backend consumers on demand.
CLF-C02 Cloud Technology and Services Practice Question
This CLF-C02 practice question tests your understanding of cloud technology and services. Match the stated requirement to the specific cloud service, access model, or configuration option — many options are valid in isolation but not for this scenario. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
A company has a two-tier web application. The front-end web servers run on Amazon EC2 instances in a public subnet. The back-end application servers process jobs that are submitted by the front end. The company wants to decouple the front-end and back-end tiers so that the back-end servers can process jobs as they are submitted, even if the front-end servers experience a spike in traffic. The solution must be durable and fully managed, and must allow the front-end servers to send job requests without waiting for the back-end servers to be available. Which AWS service should the company use to send the job requests from the front end to the back end?
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
Amazon Simple Queue Service (SQS)
Amazon Simple Queue Service (SQS) is the correct choice because it provides a fully managed, durable, and decoupled message queue that allows front-end EC2 instances to send job requests as messages. The back-end application servers can then poll and process these messages asynchronously, ensuring that spikes in front-end traffic do not overwhelm the back-end, and the front-end does not need to wait for back-end availability.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
Amazon Simple Queue Service (SQS)
Why this is correct
Amazon SQS is a fully managed message queue service that decouples application components. Front-end servers can send job requests to an SQS queue, and back-end servers process them asynchronously. Messages are stored durably across multiple Availability Zones, and the front end can continue sending requests without waiting for the back end to be ready. This correctly meets the requirement for a durable, fully managed decoupling solution.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
Amazon Simple Notification Service (SNS)
Why it's wrong here
Amazon SNS is a pub/sub messaging service used to send notifications to a large number of subscribers (e.g., email, SMS, HTTP endpoints). While SNS can be used to trigger asynchronous processing, it is not designed for buffering job requests between specific front-end and back-end components. SNS pushes messages to all subscribers, and if a subscriber is unavailable, the message may be lost (unless a dead-letter queue is configured). SQS is the better choice for durable, decoupled job queues.
- ✗
Amazon Kinesis Data Streams
Why it's wrong here
Amazon Kinesis Data Streams is designed for real-time streaming of large amounts of data, such as clickstreams, IoT telemetry, or log data. It is not intended for simple job queueing between application tiers. Kinesis is more complex to set up and manage than SQS for this use case, and it is optimized for high-throughput, ordered data processing, not for decoupling one-to-one job submissions.
- ✗
AWS Step Functions
Why it's wrong here
AWS Step Functions is a serverless orchestration service that lets you coordinate multiple AWS services into a workflow. It is used to define state machines that sequence tasks, add branching logic, and handle errors. While Step Functions can call SQS, it is not itself a queue. It does not store messages durably for later processing by a fleet of workers; rather, it directly invokes services. For simple decoupling of front-end and back-end, SQS is the appropriate choice.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates often confuse SNS (push-based, no durability for offline consumers) with SQS (pull-based, durable queue), or they overcomplicate the solution by selecting Kinesis Data Streams for its streaming capability, not recognizing that the requirement is simply a decoupled job queue, not real-time analytics.
Detailed technical explanation
How to think about this question
SQS uses a distributed message broker architecture where messages are stored redundantly across multiple Availability Zones for durability (default retention up to 14 days). The front-end sends messages to an SQS queue using the SendMessage API, and the back-end polls for messages using ReceiveMessage; SQS supports long polling (ReceiveMessageWaitTimeSeconds up to 20 seconds) to reduce empty responses and cost. In a real-world scenario, if the front-end experiences a traffic spike, messages accumulate in the queue, and the back-end can scale out (e.g., via Auto Scaling based on queue depth) to process them without any front-end blocking.
KKey Concepts to Remember
- Read the scenario before looking for a memorised answer.
- Find the constraint that changes the correct option.
- Eliminate answers that are true in general but not in this case.
TExam Day Tips
- Watch for words such as best, first, most likely and least administrative effort.
- Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A media company stores terabytes of video archives that are accessed once a year for audit purposes. Moving these objects to a cold storage tier (Azure Archive, S3 Glacier, or Google Nearline) costs a fraction of hot storage. Questions like this test whether you understand storage tiers, access frequency tradeoffs, and retrieval latency requirements.
What to study next
Got this wrong? Here's your next step.
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
- →
Cloud Technology and Services — study guide chapter
Learn the concepts, then practise the questions
- →
Cloud Technology and Services practice questions
Targeted practice on this topic area only
- →
All CLF-C02 questions
1,024 questions across all exam domains
- →
AWS Certified Cloud Practitioner CLF-C02 study guide
Full concept coverage aligned to exam objectives
- →
CLF-C02 practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related CLF-C02 practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Cloud Concepts practice questions
Practise CLF-C02 questions linked to Cloud Concepts.
Security and Compliance practice questions
Practise CLF-C02 questions linked to Security and Compliance.
Cloud Technology and Services practice questions
Practise CLF-C02 questions linked to Cloud Technology and Services.
Billing, Pricing, and Support practice questions
Practise CLF-C02 questions linked to Billing, Pricing, and Support.
AWS shared responsibility model practice questions
Practise CLF-C02 questions linked to AWS shared responsibility model.
AWS IAM practice questions
Practise CLF-C02 questions linked to AWS IAM.
AWS pricing practice questions
Practise CLF-C02 questions linked to AWS pricing.
AWS support plans practice questions
Practise CLF-C02 questions linked to AWS support plans.
AWS S3 practice questions
Practise CLF-C02 questions linked to AWS S3.
AWS EC2 practice questions
Practise CLF-C02 questions linked to AWS EC2.
Practice this exam
Start a free CLF-C02 practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this CLF-C02 question test?
Cloud Technology and Services — This question tests Cloud Technology and Services — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Amazon Simple Queue Service (SQS) — Amazon Simple Queue Service (SQS) is the correct choice because it provides a fully managed, durable, and decoupled message queue that allows front-end EC2 instances to send job requests as messages. The back-end application servers can then poll and process these messages asynchronously, ensuring that spikes in front-end traffic do not overwhelm the back-end, and the front-end does not need to wait for back-end availability.
What should I do if I get this CLF-C02 question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Same concept, more angles
2 more ways this is tested on CLF-C02
These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.
Variation 1. A company runs a monolithic order processing application on a single Amazon EC2 instance. During peak hours, the instance receives a sudden burst of orders that exceeds its processing capacity. Orders are dropped and customers do not receive confirmations. The company needs a solution that buffers incoming orders, stores them durably, and allows the application to process them at a manageable pace. The solution must be fully managed and ensure that no orders are lost. Which AWS service should the company use to meet these requirements?
medium- ✓ A.Amazon Simple Queue Service (SQS)
- B.Amazon Simple Notification Service (SNS)
- C.Amazon Kinesis Data Firehose
- D.Amazon ElastiCache
Why A: Amazon Simple Queue Service (SQS) is a fully managed message queuing service that decouples application components. It durably stores incoming orders in a queue, allowing the EC2 instance to poll and process them at its own pace, preventing order loss during traffic bursts. SQS guarantees at-least-once delivery and provides a buffer that absorbs spikes in demand.
Variation 2. A company runs a monolithic web application on Amazon EC2 that processes user-uploaded files synchronously. During peak hours, the application experiences slow response times because the file processing blocks the web server. The company wants to decouple the upload process from the file processing to improve responsiveness and allow each component to scale independently. The file processing backend must poll for new work and handle failures gracefully by retrying failed messages. Which AWS service should the company use to implement this decoupling?
medium- A.Amazon Simple Notification Service (SNS)
- ✓ B.Amazon Simple Queue Service (SQS)
- C.Amazon Kinesis Data Streams
- D.Amazon MQ
Why B: Amazon Simple Queue Service (SQS) is the correct choice because it provides a fully managed message queue that decouples the upload process from the file processing backend. The web server can immediately return a response after placing a message in the SQS queue, while the backend workers poll the queue for new work. SQS also supports dead-letter queues and configurable redrive policies to handle failures gracefully by retrying failed messages.
Keep practising
More CLF-C02 practice questions
- A company publishes a message each time a new product is added to its catalogue. Three services need to receive this mes…
- A media company stores frequently accessed video thumbnails in Amazon S3. The thumbnails are read multiple times every d…
- A company needs a service to translate domain names (like www.example.com) into IP addresses, check the health of their…
- A startup runs an application on AWS and receives a monthly bill that charges exactly for the number of compute hours us…
- A financial institution runs its core banking application on-premises due to regulatory requirements. It has connected i…
- A company wants to run a MySQL database in AWS without managing database software installation, applying patches, settin…
Last reviewed: Jun 11, 2026
This CLF-C02 practice question is part of Courseiva's free Amazon Web Services certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the CLF-C02 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.