- A
Amazon ElastiCache
Why wrong: Amazon ElastiCache is an in-memory caching service used to improve read/write performance, not to decouple application components or handle asynchronous message delivery.
- B
Amazon Simple Queue Service (SQS)
Amazon SQS is a message queuing service that decouples application components. It allows the front-end to send messages to a queue, which are then processed by the backend independently, ensuring no data loss and asynchronous processing.
- C
Amazon Route 53
Why wrong: Amazon Route 53 is a DNS (Domain Name System) web service used for routing end users to internet applications, not for decoupling application components or message delivery.
- D
Amazon CloudWatch
Why wrong: Amazon CloudWatch is a monitoring and observability service for AWS resources and applications. It does not provide decoupling or message queue functionality.
Quick Answer
The answer is Amazon Simple Queue Service (SQS), the correct choice for decoupling microservices asynchronously on AWS. SQS provides a durable, fully managed message queue that allows the front-end to send order requests and immediately return a response, while the backend processes those messages independently, even if it takes several seconds or becomes temporarily unavailable. This decoupling pattern is a core concept tested on the AWS Certified Cloud Practitioner CLF-C02 exam, often appearing in scenario-based questions about fault tolerance and loose coupling between services. A common trap is confusing SQS with Amazon SNS (a pub/sub notification service) or Amazon Kinesis (for real-time streaming); remember that SQS is for point-to-point asynchronous messaging where each message is consumed by one component. For the exam, think of SQS as a shock absorber between services: it buffers requests so the front-end never waits, and it stores messages durably across multiple AZs to prevent data loss. Memory tip: SQS = “Store, Queue, and Separate” — it stores messages durably, queues them for processing, and separates your services for resilience.
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. A key principle to apply: amazon SQS is a fully managed message queuing service.. 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 developing a microservices application on AWS. The application includes a front-end web tier and a backend order processing service. The front-end sends order requests to the backend, which may take several seconds to process. The company wants to ensure that the front-end does not wait for the backend to complete, and that no orders are lost if the backend service is temporarily unavailable. Which AWS service should the company use to decouple the front-end and backend?
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 message queue that decouples the front-end and backend services. The front-end can send order requests to an SQS queue and immediately return a response, while the backend processes messages asynchronously. SQS also stores messages durably across multiple Availability Zones, ensuring no orders are lost even if the backend is temporarily unavailable.
Key principle: Amazon SQS is a fully managed message queuing service.
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 ElastiCache
Why it's wrong here
Amazon ElastiCache is an in-memory caching service used to improve read/write performance, not to decouple application components or handle asynchronous message delivery.
- ✓
Amazon Simple Queue Service (SQS)
Why this is correct
Amazon SQS is a message queuing service that decouples application components. It allows the front-end to send messages to a queue, which are then processed by the backend independently, ensuring no data loss and asynchronous processing.
Related concept
Amazon SQS is a fully managed message queuing service.
- ✗
Amazon Route 53
Why it's wrong here
Amazon Route 53 is a DNS (Domain Name System) web service used for routing end users to internet applications, not for decoupling application components or message delivery.
- ✗
Amazon CloudWatch
Why it's wrong here
Amazon CloudWatch is a monitoring and observability service for AWS resources and applications. It does not provide decoupling or message queue functionality.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates may confuse ElastiCache's in-memory caching with message queuing, mistakenly thinking it can buffer requests, but ElastiCache has no persistent storage or asynchronous delivery guarantees for decoupling services.
Detailed technical explanation
How to think about this question
SQS uses a pull-based model where the front-end sends a message to a queue, and the backend polls the queue for new messages. The queue retains messages for up to 14 days (default 4 days) and supports at-least-once delivery, meaning the backend must be idempotent to handle potential duplicates. In a real-world scenario, combining SQS with an SQS dead-letter queue (DLQ) allows you to isolate messages that fail processing after a configurable number of retries, preventing data loss.
KKey Concepts to Remember
- Amazon SQS is a fully managed message queuing service.
- SQS enables asynchronous communication between decoupled application components.
- Messages are reliably stored in SQS queues until processed by consumers.
- SQS helps prevent data loss and improves fault tolerance in distributed systems.
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
Amazon SQS is a fully managed message queuing service.
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.
Review amazon SQS is a fully managed message queuing service., then practise related CLF-C02 questions on the same topic to reinforce the concept.
- →
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 — Amazon SQS is a fully managed message queuing service..
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 message queue that decouples the front-end and backend services. The front-end can send order requests to an SQS queue and immediately return a response, while the backend processes messages asynchronously. SQS also stores messages durably across multiple Availability Zones, ensuring no orders are lost even if the backend is temporarily unavailable.
What should I do if I get this CLF-C02 question wrong?
Review amazon SQS is a fully managed message queuing service., then practise related CLF-C02 questions on the same topic to reinforce the concept.
What is the key concept behind this question?
Amazon SQS is a fully managed message queuing service.
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 →
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.