- A
The evaluation step must be split into two steps: one for evaluation and one for condition check
Why wrong: The condition can be a separate step after evaluation; no need to split further.
- B
The evaluation script outputs the F1 score as a string, and string comparison '0.94' >= '0.95' evaluates to true because it is lexicographically compared
If the F1 score is a string, the comparison may be lexicographic; '0.94' is not >= '0.95' lexicographically, but the actual cause could be that the script outputs the score as a string and the condition fails to parse it as a number, causing unexpected behavior. The most likely fix is to ensure numeric output.
- C
The Condition step cannot be used to check metric values; it can only check step status
Why wrong: Condition steps can evaluate expressions from step outputs, including metrics.
- D
The threshold should be set to 0.95 but the Condition step uses a less than or equal operator
Why wrong: The condition uses >=, which is correct for pass.
Quick Answer
The answer is that the evaluation script outputs the F1 score as a string, causing a lexicographic comparison in the Condition step. When SageMaker Pipelines evaluates the expression `$.evaluation.metrics.f1_score >= 0.95`, if the F1 score is a string like "0.94", the comparison becomes a character-by-character string comparison rather than a numeric one. Lexicographically, "0.94" is considered greater than or equal to "0.95" because after the decimal point, the character '9' is greater than '5', so the condition incorrectly evaluates to true and the pipeline proceeds to registration. This scenario is a classic trap on the AWS Certified Machine Learning Engineer Associate MLA-C01 exam, testing your understanding of how SageMaker Pipelines handles data types in Condition steps—a common oversight when outputting metrics from evaluation scripts. The key troubleshooting condition step in SageMaker Pipelines is to always verify that numeric outputs are explicitly cast as floats, not strings, in your JSON output. Memory tip: "Strings sort, numbers compare—if your metric fails, check the data type first."
MLA-C01 Deployment and Orchestration of ML Workflows Practice Question
This MLA-C01 practice question tests your understanding of deployment and orchestration of ml workflows. 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 financial services company has a SageMaker pipeline that trains a fraud detection model daily. The pipeline consists of three steps: preprocessing (using a Spark script), training (XGBoost), and evaluation. The evaluation step calculates the F1 score and compares it to a threshold of 0.95. If the F1 score is below 0.95, the pipeline should fail and notify the team via email. The team implemented this using a Condition step that checks if the F1 score is greater than or equal to 0.95. If true, the pipeline proceeds to register the model; if false, the pipeline fails. However, the team notices that even when the F1 score is 0.94, the pipeline continues to the registration step. The evaluation script outputs the F1 score as a float with two decimal places in a JSON file. The Condition step uses the expression: $.evaluation.metrics.f1_score >= 0.95. What is the most likely cause of the issue?
Clue words in this question
Noticing these words before you look at the options changes how you read each choice.
Clue:
"most likely"Why it matters: Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.
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
The evaluation script outputs the F1 score as a string, and string comparison '0.94' >= '0.95' evaluates to true because it is lexicographically compared
The most likely cause is that the evaluation script outputs the F1 score as a string (e.g., "0.94") rather than a numeric value. In AWS SageMaker Pipelines, the Condition step evaluates expressions using JSONPath, and when comparing two values, if one is a string, the comparison is performed lexicographically (character by character). Lexicographically, the string "0.94" is considered greater than or equal to "0.95" because '9' > '5' after the decimal point, causing the condition to pass incorrectly.
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.
- ✗
The evaluation step must be split into two steps: one for evaluation and one for condition check
Why it's wrong here
The condition can be a separate step after evaluation; no need to split further.
- ✓
The evaluation script outputs the F1 score as a string, and string comparison '0.94' >= '0.95' evaluates to true because it is lexicographically compared
Why this is correct
If the F1 score is a string, the comparison may be lexicographic; '0.94' is not >= '0.95' lexicographically, but the actual cause could be that the script outputs the score as a string and the condition fails to parse it as a number, causing unexpected behavior. The most likely fix is to ensure numeric output.
Clue confirmation
The clue word "most likely" in the question point toward this answer.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
The Condition step cannot be used to check metric values; it can only check step status
Why it's wrong here
Condition steps can evaluate expressions from step outputs, including metrics.
- ✗
The threshold should be set to 0.95 but the Condition step uses a less than or equal operator
Why it's wrong here
The condition uses >=, which is correct for pass.
Common exam traps
Common exam trap: answer the scenario, not the keyword
AWS often tests the subtle distinction between numeric and string comparisons in AWS Step Functions and SageMaker Pipelines, where candidates assume that a value that looks like a number will be compared numerically, but the actual behavior depends on the data type in the JSON output.
Trap categories for this question
Command / output trap
Condition steps can evaluate expressions from step outputs, including metrics.
Detailed technical explanation
How to think about this question
In SageMaker Pipelines, the Condition step uses JSONPath to extract values from step outputs, and comparisons are type-sensitive. If the output JSON contains a numeric value (e.g., 0.94 without quotes), the comparison is numeric; if it contains a quoted string (e.g., "0.94"), the comparison is lexicographic. Lexicographic comparison of strings works by comparing ASCII values character by character: '0' equals '0', '.' equals '.', then '9' (ASCII 57) vs '5' (ASCII 53), so '9' > '5' makes the entire string "0.94" >= "0.95" evaluate to true. This is a common pitfall when outputs are serialized as strings in JSON files.
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.
- →
Deployment and Orchestration of ML Workflows — study guide chapter
Learn the concepts, then practise the questions
- →
Deployment and Orchestration of ML Workflows practice questions
Targeted practice on this topic area only
- →
All MLA-C01 questions
507 questions across all exam domains
- →
AWS Certified Machine Learning Engineer Associate MLA-C01 study guide
Full concept coverage aligned to exam objectives
- →
MLA-C01 practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related MLA-C01 practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Data Preparation for Machine Learning practice questions
Practise MLA-C01 questions linked to Data Preparation for Machine Learning.
ML Model Development practice questions
Practise MLA-C01 questions linked to ML Model Development.
Deployment and Orchestration of ML Workflows practice questions
Practise MLA-C01 questions linked to Deployment and Orchestration of ML Workflows.
ML Solution Monitoring, Maintenance and Security practice questions
Practise MLA-C01 questions linked to ML Solution Monitoring, Maintenance and Security.
MLA-C01 fundamentals practice questions
Practise MLA-C01 questions linked to MLA-C01 fundamentals.
MLA-C01 scenario practice questions
Practise MLA-C01 questions linked to MLA-C01 scenario.
MLA-C01 troubleshooting practice questions
Practise MLA-C01 questions linked to MLA-C01 troubleshooting.
Practice this exam
Start a free MLA-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 MLA-C01 question test?
Deployment and Orchestration of ML Workflows — This question tests Deployment and Orchestration of ML Workflows — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: The evaluation script outputs the F1 score as a string, and string comparison '0.94' >= '0.95' evaluates to true because it is lexicographically compared — The most likely cause is that the evaluation script outputs the F1 score as a string (e.g., "0.94") rather than a numeric value. In AWS SageMaker Pipelines, the Condition step evaluates expressions using JSONPath, and when comparing two values, if one is a string, the comparison is performed lexicographically (character by character). Lexicographically, the string "0.94" is considered greater than or equal to "0.95" because '9' > '5' after the decimal point, causing the condition to pass incorrectly.
What should I do if I get this MLA-C01 question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
Are there clue words in this question I should notice?
Yes — watch for: "most likely". Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.
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 →
Keep practising
More MLA-C01 practice questions
- A company is running a SageMaker endpoint serving multiple models. They need to monitor for data drift and model quality…
- A data scientist trained a logistic regression model on a dataset with 100 features. After training, the training accura…
- A team is training a deep learning model on Amazon SageMaker using a custom Docker container. Which three practices shou…
- A company is using SageMaker to train a neural network for image classification. The training job is taking too long. Th…
- A team is developing a model to predict customer churn. The dataset has 10,000 samples with 20 features. The target vari…
- A data engineer is processing a large dataset in Amazon S3 with AWS Glue ETL. The dataset contains timestamps in multipl…
Last reviewed: Jun 30, 2026
This MLA-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 MLA-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.