Question 592 of 1,024
Cloud ConceptsmediumMultiple ChoiceObjective-mapped

Quick Answer

The answer is horizontal scaling. This architecture is correct because it distributes the batch processing workload across multiple EC2 instances, each handling a separate chunk of data simultaneously, which is the defining characteristic of scaling out rather than up. By automatically reprocessing any failed chunk on another instance, the solution demonstrates fault tolerance and parallelism—core benefits of horizontal scaling that go beyond simply adding more power to a single machine. On the AWS Certified Cloud Practitioner CLF-C02 exam, this scenario tests your ability to distinguish horizontal scaling from vertical scaling, a common trap where candidates confuse adding more instances (horizontal) with upgrading to a larger instance (vertical). A helpful memory tip: think of horizontal scaling as adding more workers to a team, while vertical scaling gives one worker a bigger desk.

CLF-C02 Cloud Concepts Practice Question

This CLF-C02 practice question tests your understanding of cloud concepts. 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 runs a nightly batch processing job on a single on-premises server. The job takes 4 hours to complete, and if the server fails during processing, the job must start over from the beginning. The company is migrating this workload to AWS. The solutions architect proposes running the job across multiple Amazon EC2 instances that process different chunks of data simultaneously. The architect also plans to configure the system so that if any single instance fails, its chunk is automatically reprocessed by another instance, ensuring the overall job still completes. Which benefit of cloud computing does this architecture primarily demonstrate?

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

Horizontal scaling

Option C is correct because the architecture distributes the workload across multiple EC2 instances, each processing a separate chunk of data. This is the definition of horizontal scaling (scaling out). If an instance fails, its chunk is automatically reprocessed by another instance, which demonstrates the fault tolerance and parallelism that horizontal scaling enables, not just adding more capacity.

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.

  • Elasticity

    Why it's wrong here

    Incorrect. Elasticity refers to automatically provisioning and releasing resources in response to demand changes. This scenario does not involve dynamic scaling based on fluctuating demand; the same number of instances are used each night.

  • High availability

    Why it's wrong here

    Incorrect. High availability focuses on minimizing downtime and ensuring the system is operational. While the design provides some availability benefit (job continues despite failure), the primary goal is to improve performance through parallel processing, which is horizontal scaling.

  • Horizontal scaling

    Why this is correct

    Correct. Horizontal scaling (scaling out) means adding more instances to share the workload. The architect splits the job into chunks and runs them on multiple EC2 instances, improving both performance (parallelism) and fault tolerance (chunks are reprocessed if an instance fails).

    Related concept

    Read the scenario before looking for a memorised answer.

  • Global reach

    Why it's wrong here

    Incorrect. Global reach refers to deploying resources in multiple geographic regions to reduce latency or meet data residency requirements. This scenario does not mention multiple regions; all instances are assumed to be in the same region.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates confuse fault tolerance (handling instance failure) with high availability, but the question emphasizes distributing work across multiple instances to complete the job faster and handle failures, which is the core benefit of horizontal scaling, not just keeping the system running.

Trap categories for this question

  • Scenario analysis trap

    Incorrect. Elasticity refers to automatically provisioning and releasing resources in response to demand changes. This scenario does not involve dynamic scaling based on fluctuating demand; the same number of instances are used each night.

Detailed technical explanation

How to think about this question

Horizontal scaling in AWS is achieved by adding more EC2 instances behind a load balancer (e.g., Application Load Balancer) or by using a distributed processing framework like AWS Batch or Amazon EMR. Under the hood, each instance processes a distinct data partition (e.g., an S3 prefix or a DynamoDB shard), and failure detection relies on health checks (e.g., ELB health checks or custom heartbeat mechanisms) to trigger reprocessing. A subtle behavior is that horizontal scaling requires the application to be stateless or to externalize state (e.g., in S3 or DynamoDB) so that any instance can pick up a failed chunk without data loss.

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 Concepts — This question tests Cloud Concepts — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Horizontal scaling — Option C is correct because the architecture distributes the workload across multiple EC2 instances, each processing a separate chunk of data. This is the definition of horizontal scaling (scaling out). If an instance fails, its chunk is automatically reprocessed by another instance, which demonstrates the fault tolerance and parallelism that horizontal scaling enables, not just adding more capacity.

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. Which statement correctly describes the difference between horizontal scaling and vertical scaling in cloud computing?

medium
  • A.Horizontal scaling means increasing instance size; vertical scaling means adding more instances
  • B.Horizontal scaling adds more instances; vertical scaling increases the size of existing instances
  • C.Both scaling types produce identical results and are interchangeable in cloud architectures
  • D.Vertical scaling is always preferred because it reduces the number of instances to manage

Why B: Option B is correct because horizontal scaling (scaling out) involves adding more instances of a resource, such as EC2 instances, to distribute the load, while vertical scaling (scaling up) increases the size or capacity of an existing instance, for example by moving from a t2.micro to a t2.large. This distinction is fundamental in AWS cloud architectures, where horizontal scaling improves fault tolerance and availability, and vertical scaling is limited by the maximum instance size.

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.