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

Quick Answer

The answer is AWS Step Functions. This service is the correct choice because it provides fully managed serverless workflow orchestration, allowing you to define a state machine that enforces sequential steps like validate, check inventory, process payment, and update database, while also supporting parallel branches for tasks such as shipping notification and invoice generation after payment confirmation. Step Functions automatically handles retries with configurable backoff rates when a step fails and offers a visual console to track execution state in real time, directly matching all the company’s requirements. On the AWS Certified Cloud Practitioner CLF-C02 exam, this question tests your understanding of managed orchestration versus simple automation—a common trap is confusing Step Functions with AWS Simple Notification Service (SNS) or AWS Lambda, but remember that Step Functions is the only service that provides a visual workflow graph and built-in error handling for multi-step serverless processes. Memory tip: think “Step Functions = state machine with steps and branches,” and visualize the flow chart in the AWS console.

CLF-C02 Cloud Technology and Services Practice Question

This CLF-C02 practice question tests your understanding of cloud technology and services. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. 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 building a serverless order-processing application. The workflow consists of several steps that must run in a defined order: validate the order, check inventory, process payment, and then update the database. Some steps, such as shipping notification and invoice generation, can run in parallel after payment is confirmed. The company needs a managed service to orchestrate these steps, automatically handle retries if a step fails, and provide a visual representation of the workflow's execution state. 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

AWS Step Functions

AWS Step Functions is the correct choice because it is a fully managed serverless orchestration service that allows you to define workflows as state machines, specifying sequential steps (validate, check inventory, process payment, update database) and parallel branches (shipping notification, invoice generation). It automatically handles retries on failures with configurable backoff rates and provides a visual execution console to track the state of each workflow instance in real time, meeting all the company's requirements.

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.

  • AWS Step Functions

    Why this is correct

    AWS Step Functions is a serverless orchestration service that allows you to define workflows as state machines. It can coordinate sequential and parallel steps, handle retries and errors, and provides a visual console to track execution. This directly matches the requirement to orchestrate the order-processing steps with defined order and parallel branches.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Amazon Simple Workflow Service (SWF)

    Why it's wrong here

    Amazon SWF is an older service that also helps coordinate work across distributed components. However, it is not serverless in the same way as Step Functions, requires more manual setup (e.g., deciders, workers), and is not the recommended choice for modern serverless applications on AWS.

  • Amazon MQ

    Why it's wrong here

    Amazon MQ is a managed message broker service for Apache ActiveMQ and RabbitMQ. It provides message queuing and topic-based pub/sub, but it does not orchestrate workflows or execute steps in a defined order with retries.

  • AWS Glue

    Why it's wrong here

    AWS Glue is a fully managed extract, transform, and load (ETL) service used for preparing and loading data for analytics. It is not designed for orchestrating application workflows involving multiple AWS services like Lambda and databases.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates confuse Amazon SWF with Step Functions because both orchestrate workflows, but SWF requires custom deciders and workers for coordination, whereas Step Functions is fully managed and serverless, making it the correct choice for this use case.

Detailed technical explanation

How to think about this question

Under the hood, AWS Step Functions uses Amazon States Language (ASL) to define state machines as JSON, supporting states like Task, Choice, Parallel, and Wait. The service automatically retries failed tasks based on exponential backoff (e.g., interval seconds, max attempts) defined in the Retry field, and it integrates natively with over 200 AWS services via optimized service integrations (e.g., Lambda, DynamoDB, SQS) without needing custom code. In a real-world scenario, if the payment step fails due to a transient error, Step Functions can retry it up to a specified limit before routing to a fallback state, all while updating the execution history visible in the console.

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 cloud solutions architect for a retail company is evaluating services for a new workload. The correct answer here reflects best practice for the specific scenario described — not a general cloud recommendation. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Cloud exam questions reward reading the constraint carefully: the same technology can be right or wrong depending on the use case.

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: AWS Step Functions — AWS Step Functions is the correct choice because it is a fully managed serverless orchestration service that allows you to define workflows as state machines, specifying sequential steps (validate, check inventory, process payment, update database) and parallel branches (shipping notification, invoice generation). It automatically handles retries on failures with configurable backoff rates and provides a visual execution console to track the state of each workflow instance in real time, meeting all the company's requirements.

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

1 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 development team is building a serverless image processing application. When a user uploads an image to Amazon S3, the application must perform three sequential steps: first, resize the image; second, generate a thumbnail; third, store metadata in Amazon DynamoDB. The team wants to define this workflow as a visual state machine, handle errors with retries, and manage the execution flow without writing custom orchestration code. Which AWS service should the team use?

medium
  • A.AWS Step Functions
  • B.Amazon Simple Queue Service (SQS)
  • C.Amazon EventBridge
  • D.AWS Lambda

Why A: AWS Step Functions is the correct choice because it allows you to define a visual state machine that orchestrates three sequential steps (resize, thumbnail, metadata storage) without writing custom orchestration code. It natively supports error handling with retries and manages execution flow, making it ideal for serverless workflows that require coordination across multiple AWS services like Lambda and DynamoDB.

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.