Question 386 of 506
Scaling prototypes into ML modelseasyMultiple ChoiceObjective-mapped

Quick Answer

The answer is that the prediction will fail because the pre-built container for scikit-learn requires a single serialized model file, not a directory with a custom script. The pre-built container model artifact requirements for scikit-learn are strict: the container expects a standard serialized object like model.pkl, which it can deserialize and load into memory for inference. A directory containing a custom preprocessing script is not a recognized artifact format, so the container cannot locate or execute the model, causing the prediction request to error out. On the Google Professional Machine Learning Engineer exam, this tests your understanding of how pre-built containers differ from custom containers—a common trap is assuming any file structure works, when in fact each container has rigid artifact expectations. The key memory tip is “one file, one format”: for scikit-learn, the artifact must be a single .pkl file, nothing more.

PMLE Scaling prototypes into ML models Practice Question

This PMLE practice question tests your understanding of scaling prototypes into ml models. 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.

Network Topology
gcloud ai models uploadregion=us-central1 \display-name=my_model \container-image-uri=us-docker.pkg.dev/vertex-ai/prediction/sklearn-cpu.0-24:latest \artifact-uri=gs://my-bucket/model/Refer to the exhibit.

An ML engineer runs this command to upload a model. The model artifact in Cloud Storage is a directory containing model.pkl and a custom preprocessing script. What will happen when he later deploys this model to an endpoint and sends a prediction request?

Question 1easymultiple choice
Full question →
Network Topology
gcloud ai models uploadregion=us-central1 \display-name=my_model \container-image-uri=us-docker.pkg.dev/vertex-ai/prediction/sklearn-cpu.0-24:latest \artifact-uri=gs://my-bucket/model/Refer to the exhibit.

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 prediction will fail because the custom preprocessing script is not a standard scikit-learn serialized object.

Option C is correct because the pre-built container for scikit-learn expects a single serialized model file (e.g., model.pkl) as the artifact. A directory containing a custom preprocessing script is not a standard scikit-learn serialized object, so the container cannot load or execute it, causing the prediction to fail.

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 prediction will succeed because the pre-built container automatically detects and uses the custom preprocessing script.

    Why it's wrong here

    The container does not automatically integrate custom scripts.

  • The prediction will succeed only if he also specifies a custom prediction routine.

    Why it's wrong here

    A custom prediction routine would be needed to incorporate the preprocessing.

  • The prediction will fail because the custom preprocessing script is not a standard scikit-learn serialized object.

    Why this is correct

    The pre-built container only loads the model; custom preprocessing is not executed.

    Related concept

    Read the scenario before looking for a memorised answer.

  • The prediction will fail because the artifact URI must point to a single file not a directory.

    Why it's wrong here

    Vertex AI accepts directories as artifact URIs.

Common exam traps

Common exam trap: answer the scenario, not the keyword

Google Cloud often tests the misconception that a pre-built container can handle arbitrary directories or custom scripts, when in fact it strictly expects a single serialized model file.

Detailed technical explanation

How to think about this question

Under the hood, the pre-built container for scikit-learn uses a specific loading mechanism (e.g., joblib.load or pickle.load) on the artifact file. If the artifact is a directory, the container cannot determine which file to load, and it does not execute arbitrary scripts. In a real-world scenario, to include preprocessing logic, you must either bake it into the model object (e.g., using a Pipeline) or use a custom container that runs your script.

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 media company stores terabytes of video archives that are accessed once a year for audit purposes. Moving these objects to a cold storage tier (Azure Archive, S3 Glacier, or Google Nearline) costs a fraction of hot storage. Questions like this test whether you understand storage tiers, access frequency tradeoffs, and retrieval latency requirements.

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 PMLE 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 PMLE 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 PMLE question test?

Scaling prototypes into ML models — This question tests Scaling prototypes into ML models — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: The prediction will fail because the custom preprocessing script is not a standard scikit-learn serialized object. — Option C is correct because the pre-built container for scikit-learn expects a single serialized model file (e.g., model.pkl) as the artifact. A directory containing a custom preprocessing script is not a standard scikit-learn serialized object, so the container cannot load or execute it, causing the prediction to fail.

What should I do if I get this PMLE 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

Last reviewed: Jun 30, 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 PMLE practice question is part of Courseiva's free Google Cloud 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 PMLE exam.