Question 387 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 runs a web application on Amazon EC2 instances that accepts user uploads. The uploads need to be processed by a backend service that performs virus scanning and thumbnail generation. The backend processing can take up to 30 seconds per upload. Users should not experience delays when submitting their files. The company wants to decouple the web tier from the processing tier so that the web application can immediately return a response to the user while the processing happens asynchronously. The solution must be fully managed, durable, and scale automatically with demand. Which AWS service should the company use?

Clue words in this question

Noticing these words before you look at the options changes how you read each choice.

  • Clue: "immediately / without restart"

    Why it matters: Time or reboot constraint — the correct answer must take effect right away without requiring a reboot or reload.

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 (Amazon SQS)

Amazon SQS is the correct choice because it provides a fully managed, durable, and scalable message queue that decouples the web tier from the processing tier. When a user uploads a file, the web application can immediately return a response after sending a message to an SQS queue, while the backend service polls the queue and processes the upload asynchronously, handling the up-to-30-second processing time without blocking the user.

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 Notification Service (Amazon SNS)

    Why it's wrong here

    Amazon SNS is a publish/subscribe messaging service that pushes messages to subscribers (e.g., email, SMS, or HTTP endpoints). It does not provide a message queue where a consumer can poll and process at its own pace. If the backend is unavailable when a message is sent, the message could be lost or require complex retry logic. SNS is not designed for decoupling asynchronous work queues.

    When this WOULD be correct

    A company needs to send real-time notifications (e.g., email, SMS, HTTP endpoints) to multiple subscribers when a new file is uploaded, without requiring durable queuing or asynchronous processing. SNS would be correct for broadcasting alerts.

  • Amazon Simple Queue Service (Amazon SQS)

    Why this is correct

    Amazon SQS is a fully managed message queuing service that allows you to decouple application components. The web application can send a message to a queue immediately after user upload, and the backend service can poll and process messages asynchronously. SQS stores messages durably and scales automatically, making it ideal for this use case.

    Clue confirmation

    The clue word "immediately / without restart" in the question point toward this answer.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Amazon Kinesis Data Streams

    Why it's wrong here

    Amazon Kinesis Data Streams is designed for real-time streaming of data at scale, where multiple consumers can process data in near real-time for analytics. It is more complex than needed for simple asynchronous processing and is not intended for long-lived queuing of individual tasks. It also requires managing shards and throughput, whereas SQS provides a simpler queue abstraction.

    When this WOULD be correct

    A company needs to ingest and process real-time clickstream data from millions of users, analyze it with multiple consumers (e.g., real-time dashboards and long-term storage), and requires low-latency data delivery. Amazon Kinesis Data Streams would be the correct choice because it supports multiple consumers processing the same stream concurrently and handles high-throughput data ingestion.

  • Amazon MQ

    Why it's wrong here

    Amazon MQ is a managed message broker service that supports standard messaging protocols (e.g., AMQP, MQTT). While it can be used for queueing, it is typically chosen when migrating existing applications that rely on those protocols. For new cloud-native applications, Amazon SQS is simpler, fully serverless, and more cost-effective because it does not require provisioning or managing broker instances.

    When this WOULD be correct

    A company needs to migrate an existing on-premises application that uses JMS-compatible message brokers (like 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 APIs, allowing a lift-and-shift migration.

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 (Amazon SQS)Correct answer

Why this is correct

Amazon SQS is a fully managed message queuing service that allows you to decouple application components. The web application can send a message to a queue immediately after user upload, and the backend service can poll and process messages asynchronously. SQS stores messages durably and scales automatically, making it ideal for this use case.

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

Why this is wrong here

Amazon SNS is a pub/sub messaging service for fan-out notifications, not for decoupling asynchronous processing with durable message queues. It does not provide the message retention, polling, or processing guarantees needed for backend tasks like virus scanning.

★ When this WOULD be the correct answer

A company needs to send real-time notifications (e.g., email, SMS, HTTP endpoints) to multiple subscribers when a new file is uploaded, without requiring durable queuing or asynchronous processing. SNS would be correct for broadcasting alerts.

Why candidates choose this

Candidates may confuse SNS with SQS because both are messaging services, but SNS is push-based and lacks the queue-based decoupling and durability required for asynchronous processing tasks.

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 decoupling a web tier from a processing tier with individual messages that need to be processed asynchronously. It lacks the built-in message visibility timeout and individual message lifecycle management that SQS provides for this use case.

★ When this WOULD be the correct answer

A company needs to ingest and process real-time clickstream data from millions of users, analyze it with multiple consumers (e.g., real-time dashboards and long-term storage), and requires low-latency data delivery. Amazon Kinesis Data Streams would be the correct choice because it supports multiple consumers processing the same stream concurrently and handles high-throughput data ingestion.

Why candidates choose this

Candidates may confuse Kinesis Data Streams with a message queue service because both handle asynchronous data flow, but Kinesis is optimized for streaming analytics rather than decoupling application components with individual message processing.

Amazon MQWrong answer — click to see why

Why this is wrong here

Amazon MQ is a managed message broker service for ActiveMQ and RabbitMQ, which is not fully managed in the sense of serverless scaling and requires provisioning and managing broker instances. It does not provide the same level of automatic scaling and durability as Amazon SQS, and is overkill for simple decoupling of web and processing tiers.

★ When this WOULD be the correct answer

A company needs to migrate an existing on-premises application that uses JMS-compatible message brokers (like 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 APIs, allowing a lift-and-shift migration.

Why candidates choose this

Candidates may confuse Amazon MQ with a fully managed messaging service, not realizing that it still requires provisioning and managing broker instances, unlike the serverless SQS. They might also think that because it supports multiple protocols, it is more flexible and thus better for decoupling.

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 often confuse SNS with SQS because both are messaging services, but SNS is push-based and not designed for decoupled asynchronous processing where the consumer needs to pull messages at its own pace.

Detailed technical explanation

How to think about this question

SQS uses a pull-based model where the backend service polls the queue using the ReceiveMessage API, which supports long polling (up to 20 seconds) to reduce empty responses and costs. Messages are stored durably across multiple Availability Zones, with a default retention period of 4 days (configurable up to 14 days), ensuring no data loss even if the backend fails temporarily. The decoupling pattern also allows the web tier to scale independently of the processing tier, as SQS can handle any number of messages without provisioning.

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.

Visual reference

Client Server SYN (seq=100) SYN-ACK (seq=200, ack=101) ACK (ack=201) Connection established — data transfer begins

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 (Amazon SQS) — Amazon SQS is the correct choice because it provides a fully managed, durable, and scalable message queue that decouples the web tier from the processing tier. When a user uploads a file, the web application can immediately return a response after sending a message to an SQS queue, while the backend service polls the queue and processes the upload asynchronously, handling the up-to-30-second processing time without blocking the user.

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.

Are there clue words in this question I should notice?

Yes — watch for: "immediately / without restart". Time or reboot constraint — the correct answer must take effect right away without requiring a reboot or reload.

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.