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

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?

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.

    When this WOULD be correct

    A company needs to send order confirmation emails and SMS alerts to customers when an order is placed. The system must fan out a single message to multiple subscribers (email, SMS, mobile push) simultaneously. Amazon SNS would be the correct choice for this pub/sub notification 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.

    When this WOULD be correct

    A company needs to ingest and process real-time clickstream data from a website, analyze it with multiple consumer applications (e.g., real-time dashboards, anomaly detection), and retain the data for up to 7 days for replay. Kinesis Data Streams would be the correct choice for this high-throughput, ordered stream processing scenario.

  • 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.

    When this WOULD be correct

    A company needs to migrate an existing on-premises application that uses JMS-compatible message brokers (e.g., ActiveMQ or RabbitMQ) to AWS without rewriting the application code. Amazon MQ would be the correct choice because it provides a managed broker that supports standard messaging protocols and JMS APIs.

Option-by-option analysis

Why each answer is right or wrong

Understanding why wrong answers are wrong — and when they would be correct — is what separates a 750 score from a 900. The CLF-C02 exam frequently reuses these exact scenarios with slightly different constraints.

Amazon Simple Queue Service (SQS)Correct answer

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.

Amazon Simple Notification Service (SNS)Wrong answer — click to see why

Why this is wrong here

SNS is a pub/sub messaging service that pushes messages to subscribers; it does not support polling by consumers. The inventory service needs to poll for messages at its own pace, which SQS provides via long polling. SNS also does not durably store messages for individual consumer retrieval.

★ When this WOULD be the correct answer

A company needs to send order confirmation emails and SMS alerts to customers when an order is placed. The system must fan out a single message to multiple subscribers (email, SMS, mobile push) simultaneously. Amazon SNS would be the correct choice for this pub/sub notification pattern.

Why candidates choose this

Candidates may confuse SNS with SQS because both are messaging services. They might think SNS can store messages for consumers to poll, but SNS is push-based and does not provide message durability for individual consumers.

Amazon Kinesis Data StreamsWrong answer — click to see why

Why this is wrong here

Amazon Kinesis Data Streams is designed for real-time streaming of large data volumes, not for decoupled message queuing with individual message polling. It requires consumers to process records in order within shards, and does not support independent polling at the consumer's own pace without managing shard iterators.

★ When this WOULD be the correct answer

A company needs to ingest and process real-time clickstream data from a website, analyze it with multiple consumer applications (e.g., real-time dashboards, anomaly detection), and retain the data for up to 7 days for replay. Kinesis Data Streams would be the correct choice for this high-throughput, ordered stream processing scenario.

Why candidates choose this

Candidates may confuse high-throughput message streaming with durable message queuing, or think Kinesis is a general-purpose messaging service. The mention of 'high throughput' and 'durably store' can mislead them into selecting Kinesis over SQS.

Amazon MQWrong answer — click to see why

Why this is wrong here

Amazon MQ is a managed message broker for ActiveMQ or RabbitMQ, not a fully managed service that durably stores messages with high throughput and polling at the consumer's pace. It requires managing brokers and is not serverless, and it does not guarantee the same level of durability and scalability as SQS for this use case.

★ When this WOULD be the correct answer

A company needs to migrate an existing on-premises application that uses JMS-compatible message brokers (e.g., ActiveMQ or RabbitMQ) to AWS without rewriting the application code. Amazon MQ would be the correct choice because it provides a managed broker that supports standard messaging protocols and JMS APIs.

Why candidates choose this

Candidates may confuse Amazon MQ with a fully managed messaging service, but it is actually a managed broker service that still requires provisioning and scaling of broker instances, unlike the serverless SQS.

Analysis generated from the official CLF-C02blueprint and verified against question context. The “when correct” sections are what AI assistants cite when candidates ask “what’s the difference between these options?”

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

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.