- A
Use Amazon EMR with Spark and store the processed data in HDFS.
Why wrong: EMR requires cluster management and is more complex; storing in HDFS is less durable than S3.
- B
Use SageMaker Processing with a Spark container to distribute the encoding job.
SageMaker Processing with Spark provides distributed processing and is cost-effective for large datasets.
- C
Use a SageMaker notebook instance with scikit-learn to perform the encoding in memory.
Why wrong: A single notebook instance may run out of memory with 100M rows.
- D
Use AWS Glue ETL jobs to perform the encoding and store the result in S3.
Why wrong: Glue is serverless but can be more expensive than SageMaker Processing for this workload.
Quick Answer
The answer is to use SageMaker Processing with a Spark container to distribute the encoding job. This approach is the most cost-effective and scalable for feature engineering on large datasets because Spark’s distributed computing framework handles high-cardinality one-hot encoding across multiple nodes in parallel, avoiding the memory limits of a single instance. On the AWS Certified Machine Learning Specialty MLS-C01 exam, this question tests your ability to choose the right tool for large-scale data processing within SageMaker’s ecosystem, often contrasting SageMaker Processing against alternatives like Glue or EMR. A common trap is assuming serverless Glue is always cheaper, but for a focused, repeatable job on a 100-million-row DataFrame, SageMaker Processing with Spark minimizes overhead and cost by using transient, on-demand clusters. Remember the memory tip: “Spark splits, single sinks”—Spark distributes the workload, while a single-instance scikit-learn job would crash under the cardinality load.
MLS-C01 Practice Question: Machine Learning Implementation and Operations
This MLS-C01 practice question tests your understanding of machine learning implementation and operations. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. 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 recommendation system using Amazon SageMaker. The training data includes user-item interactions stored in a DataFrame with over 100 million rows. The data scientist wants to perform feature engineering, including one-hot encoding of categorical features with high cardinality. Which approach is MOST cost-effective and scalable?
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
Use SageMaker Processing with a Spark container to distribute the encoding job.
Option B is correct because SageMaker Processing with a Spark job can scale horizontally and is cost-effective for large datasets. Option A is wrong because scikit-learn on a single instance may not handle 100M rows. Option C is wrong because Glue is serverless but may be more expensive for large processing. Option D is wrong because EMR is more complex and costly for a simple job.
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.
- ✗
Use Amazon EMR with Spark and store the processed data in HDFS.
Why it's wrong here
EMR requires cluster management and is more complex; storing in HDFS is less durable than S3.
- ✓
Use SageMaker Processing with a Spark container to distribute the encoding job.
Why this is correct
SageMaker Processing with Spark provides distributed processing and is cost-effective for large datasets.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
Use a SageMaker notebook instance with scikit-learn to perform the encoding in memory.
Why it's wrong here
A single notebook instance may run out of memory with 100M rows.
- ✗
Use AWS Glue ETL jobs to perform the encoding and store the result in S3.
Why it's wrong here
Glue is serverless but can be more expensive than SageMaker Processing for this workload.
Common exam traps
Common exam trap: answer the scenario, not the keyword
Many certification questions include familiar terms but test a specific constraint. Read the exact wording before choosing an answer that is generally true but wrong for this case.
Detailed technical explanation
How to think about this question
This question should be treated as a scenario, not a definition check. Identify the problem, the constraint and the best action. Then compare each option against those facts.
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.
- Use explanations to understand the rule behind the answer.
TExam Day Tips
- Underline the problem statement mentally.
- 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 startup's cloud architect reviews their monthly bill and notices costs are higher than expected for a long-running batch job. Switching from on-demand instances to Reserved Instances — or using Spot/Preemptible VMs — can reduce compute costs by up to 72 %. Questions like this test whether you understand the tradeoffs between commitment, flexibility, and cost across cloud pricing models.
What to study next
Got this wrong? Here's your next step.
Identify which MLS-C01 exam domain this question belongs to, then review the specific concept being tested. Practise related questions in that domain and focus on understanding why each wrong answer is tempting — not just why the correct answer is right.
- →
Machine Learning Implementation and Operations — study guide chapter
Learn the concepts, then practise the questions
- →
Machine Learning Implementation and Operations practice questions
Targeted practice on this topic area only
- →
All MLS-C01 questions
1,755 questions across all exam domains
- →
AWS Certified Machine Learning Specialty MLS-C01 study guide
Full concept coverage aligned to exam objectives
- →
MLS-C01 practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related MLS-C01 practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Data Engineering practice questions
Practise MLS-C01 questions linked to Data Engineering.
Machine Learning Implementation and Operations practice questions
Practise MLS-C01 questions linked to Machine Learning Implementation and Operations.
Modeling practice questions
Practise MLS-C01 questions linked to Modeling.
Exploratory Data Analysis practice questions
Practise MLS-C01 questions linked to Exploratory Data Analysis.
MLS-C01 fundamentals practice questions
Practise MLS-C01 questions linked to MLS-C01 fundamentals.
MLS-C01 scenario practice questions
Practise MLS-C01 questions linked to MLS-C01 scenario.
MLS-C01 troubleshooting practice questions
Practise MLS-C01 questions linked to MLS-C01 troubleshooting.
Practice this exam
Start a free MLS-C01 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 MLS-C01 question test?
Machine Learning Implementation and Operations — This question tests Machine Learning Implementation and Operations — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Use SageMaker Processing with a Spark container to distribute the encoding job. — Option B is correct because SageMaker Processing with a Spark job can scale horizontally and is cost-effective for large datasets. Option A is wrong because scikit-learn on a single instance may not handle 100M rows. Option C is wrong because Glue is serverless but may be more expensive for large processing. Option D is wrong because EMR is more complex and costly for a simple job.
What should I do if I get this MLS-C01 question wrong?
Identify which MLS-C01 exam domain this question belongs to, then review the specific concept being tested. Practise related questions in that domain and focus on understanding why each wrong answer is tempting — not just why the correct answer is right.
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 →
Last reviewed: Jun 20, 2026
This MLS-C01 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 MLS-C01 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.