Question 498 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 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.

    When this WOULD be correct

    A company needs to send real-time notifications to multiple subscribers (e.g., email, SMS, Lambda functions) when a new file is uploaded to S3. The solution must support fan-out to many endpoints and does not require durable message storage or asynchronous job processing.

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

    When this WOULD be correct

    A company needs to ingest and process real-time clickstream data from a web application, analyze it with multiple consumers (e.g., for fraud detection and analytics), and retain the data for up to 7 days. Kinesis Data Streams would be correct for this streaming data ingestion and parallel consumption scenario.

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

    When this WOULD be correct

    A company needs to coordinate a multi-step workflow that involves multiple AWS services (e.g., invoking a Lambda function, processing data, and then sending a notification) with error handling and retries. Step Functions would be the correct choice to manage the state machine and execution flow.

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

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.

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

Why this is wrong here

Amazon SNS is a pub/sub messaging service that pushes messages to subscribers, but it does not provide durable storage or allow decoupling where the front end sends requests without waiting for the back end. SNS would require the back end to be available to receive messages, and it lacks the queue-based buffering needed for spike handling.

★ When this WOULD be the correct answer

A company needs to send real-time notifications to multiple subscribers (e.g., email, SMS, Lambda functions) when a new file is uploaded to S3. The solution must support fan-out to many endpoints and does not require durable message storage or asynchronous job processing.

Why candidates choose this

Candidates may confuse SNS with SQS because both are messaging services, and they might think SNS can queue messages for later processing, but SNS is designed for push notifications, not decoupled job queues.

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 job requests between tiers. It requires consumers to poll or use KCL, and does not inherently provide the durable, fully managed queue semantics needed for job processing without waiting.

★ When this WOULD be the correct answer

A company needs to ingest and process real-time clickstream data from a web application, analyze it with multiple consumers (e.g., for fraud detection and analytics), and retain the data for up to 7 days. Kinesis Data Streams would be correct for this streaming data ingestion and parallel consumption scenario.

Why candidates choose this

Candidates may confuse Kinesis Data Streams with a message queue, thinking it can decouple components, but it is optimized for streaming data, not for individual job requests with durable, asynchronous processing.

AWS Step FunctionsWrong answer — click to see why

Why this is wrong here

AWS Step Functions is a serverless orchestration service that coordinates multiple AWS services into workflows, but it is not designed for decoupling front-end and back-end tiers with durable, asynchronous job queuing. It does not provide a buffer for spikes in traffic or allow front-end servers to send requests without waiting for back-end availability.

★ When this WOULD be the correct answer

A company needs to coordinate a multi-step workflow that involves multiple AWS services (e.g., invoking a Lambda function, processing data, and then sending a notification) with error handling and retries. Step Functions would be the correct choice to manage the state machine and execution flow.

Why candidates choose this

Candidates may confuse Step Functions as a solution for decoupling because it can manage asynchronous tasks and integrate with other services, but they overlook that it lacks the durable message queuing capability required for buffering requests during traffic spikes.

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

Visual reference

192.168.1.0 /24 256 addresses (254 usable) 192.168.1.0 /25 Subnet A 128 addr (126 usable) 192.168.1.128 /25 Subnet B 128 addr (126 usable) Borrowing 1 bit from host portion creates 2 subnets (/25)

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 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 →

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.