Question 982 of 1,024
Cloud Technology and ServicesmediumMultiple ChoiceObjective-mapped

Quick Answer

The answer is Amazon Simple Queue Service (SQS). SQS is the correct choice because it provides a durable message queue for microservices decoupling, storing messages redundantly across multiple Availability Zones to guarantee no message loss even if a component fails. This fully managed service handles high throughput and lets the inventory service poll for messages at its own pace using long polling, which reduces cost and latency by waiting for messages to arrive. On the AWS Certified Cloud Practitioner CLF-C02 exam, this scenario tests your understanding of how SQS enables asynchronous communication between microservices, a core concept in the decoupling pillar of the Well-Architected Framework. A common trap is choosing Amazon Kinesis for streaming or Amazon MQ for compatibility, but the exam emphasizes SQS as the simplest, fully managed queue for point-to-point decoupling with durability guarantees. Memory tip: SQS stands for “Store, Queue, and Secure” — it holds messages safely until your service is ready to process them.

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 is refactoring its monolithic e-commerce application into multiple microservices. The order-processing service must send messages to the inventory service to reserve stock. The company needs a fully managed service that can durably store these messages, handle high throughput, and allow the inventory service to poll for messages at its own pace. The company wants to avoid any message loss. Which AWS service should the company use?

Question 1mediummultiple choice
Full question →

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 SQS is the correct choice because it is a fully managed message queuing service that durably stores messages across multiple Availability Zones, ensuring no message loss. It supports high throughput and allows the inventory service to poll for messages at its own pace using long or short polling, decoupling the order-processing and inventory services.

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

    Correct. Amazon SQS is a fully managed message queue service designed for decoupling application components. It stores messages durably, supports high throughput, and allows consumers to poll for messages, ensuring no message loss. This fits the requirement perfectly.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Amazon Simple Notification Service (SNS)

    Why it's wrong here

    Incorrect. Amazon SNS is a pub/sub messaging service that pushes notifications to subscribers. It does not allow consumers to poll for messages at their own pace, and it is not designed for durable message storage with individual message consumption. SQS is better suited for this decoupling pattern.

  • Amazon Kinesis Data Streams

    Why it's wrong here

    Incorrect. Amazon Kinesis Data Streams is designed for real-time streaming of large amounts of data, such as log and event data. While it can be used for decoupling, it is not optimized for simple point-to-point message queuing with polling. SQS is simpler and more cost-effective for this use case.

  • Amazon MQ

    Why it's wrong here

    Incorrect. Amazon MQ is a managed message broker service for Apache ActiveMQ and RabbitMQ. It is intended for migrating existing message brokers to the cloud, not for building new cloud-native decoupled architectures. SQS is serverless, simpler to use, and does not require managing broker instances.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates might choose Amazon SNS because they confuse push-based notifications with durable message queuing, overlooking that SNS does not store messages or allow polling, which is essential for decoupled, loss-free communication.

Detailed technical explanation

How to think about this question

SQS uses a distributed, redundant architecture to store messages for up to 14 days, with a default retention of 4 days, and supports at-least-once delivery to prevent message loss. The inventory service can use long polling (ReceiveMessageWaitTimeSeconds up to 20 seconds) to reduce empty responses and costs, while the order-processing service sends messages via the SendMessage API, which returns a unique message ID upon successful storage.

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

An e-commerce site experiences heavy traffic on Black Friday and near-zero traffic during off-peak weeks. Rather than provisioning permanent large VMs, the team uses auto-scaling groups that add capacity automatically under load and reduce it overnight. Questions like this test whether you understand elasticity, availability zones, and cloud compute scaling patterns.

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.

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.

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 SQS is the correct choice because it is a fully managed message queuing service that durably stores messages across multiple Availability Zones, ensuring no message loss. It supports high throughput and allows the inventory service to poll for messages at its own pace using long or short polling, decoupling the order-processing and inventory services.

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 →

How Courseiva writes practice questions · Editorial policy

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 web application that processes customer orders. During flash sales, the application's backend servers become overwhelmed because orders are submitted faster than they can be processed. The company needs a fully managed, highly available service that can buffer incoming orders so that the backend can process them at its own pace without losing any data. The service must automatically scale to handle any volume of orders without requiring manual provisioning. Which AWS service meets these requirements?

medium
  • A.Amazon Simple Notification Service (Amazon SNS)
  • B.Amazon Simple Queue Service (Amazon SQS)
  • C.Amazon Kinesis Data Streams
  • D.Amazon MQ

Why B: Amazon Simple Queue Service (SQS) is a fully managed, highly available message queuing service that decouples application components. It buffers incoming orders by storing them in a queue, allowing the backend to process messages at its own pace without losing data. SQS automatically scales to handle any volume of messages, eliminating the need for manual provisioning.

Variation 2. A company has a web application that processes customer orders. The frontend web servers run on Amazon EC2 instances and receive order requests from users. The backend order processing system runs on a separate fleet of EC2 instances. The company wants to decouple these two tiers so that order requests are stored reliably until the backend is ready to process them. The solution must handle occasional traffic spikes without losing any messages and must allow the backend to scale independently. Which AWS service should the company use to meet these requirements?

medium
  • A.Amazon Simple Notification Service (Amazon SNS)
  • B.Amazon Simple Queue Service (Amazon SQS)
  • C.Amazon Kinesis Data Streams
  • D.AWS Step Functions

Why B: Amazon Simple Queue Service (SQS) is the correct choice because it provides a fully managed message queuing service that enables you to decouple and scale microservices, distributed systems, and serverless applications. SQS reliably stores messages in a queue until the backend order processing system retrieves and processes them, ensuring no messages are lost even during traffic spikes. The backend can independently scale based on the queue depth, and SQS offers at-least-once delivery and exactly-once processing with FIFO queues if needed.

Keep practising

More CLF-C02 practice questions

Last reviewed: Jun 11, 2026

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.

Loading comments…

Sign in to join the discussion.

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.