MLA-C01 • Timed Practice Test 2
This is a timed practice session. You have 10 minutes to answer 10 questions — approximately 1 minute per question, matching real MLA-C01 exam pace. Answer every question before time expires.
Time remaining
10:00
Exam-pace drill
Allow 1 minute per question. On the real MLA-C01 exam you have approximately 72 seconds per question — this session trains you to maintain that pace under pressure.
Refer to the exhibit. A data scientist creates a SageMaker Pipeline definition using the JSON shown. The pipeline runs successfully, but the scientist notices that the training step did not use the parameter 'TrainingInstanceCount' defined in Parameters. Why did this happen?
{
"PipelineExperimentConfig": {
"ExperimentName": "my-experiment",
"TrialName": "my-trial"
},
"Parameters": {
"TrainingInstanceType": "ml.m5.large",
"TrainingInstanceCount": 2,
"MaxRuntimeInSeconds": 86400
},
"Steps": [
{
"Name": "Preprocess",
"Type": "Processing",
"ProcessingJobName": "preprocess-job",
"ProcessingResources": {
"ClusterConfig": {
"InstanceCount": 1,
"InstanceType": "ml.m5.large",
"VolumeSizeInGB": 30
}
}
},
{
"Name": "Train",
"Type": "Training",
"TrainingJobName": "train-job",
"AlgorithmSpecification": {
"TrainingImage": "123456789012.dkr.ecr.us-east-1.amazonaws.com/my-algo:latest",
"TrainingInputMode": "File"
},
"ResourceConfig": {
"InstanceCount": 2,
"InstanceType": "ml.m5.large",
"VolumeSizeInGB": 30
}
}
]
}