Question 47 of 506
Architecting low-code ML solutionshardMultiple SelectObjective-mapped

Quick Answer

The answer is to enable automated handling of missing values and outliers in the dataset configuration, along with leveraging built-in feature importance analysis and using automated hyperparameter tuning. These three actions are most effective because AutoML Tables is designed to abstract away manual data science work, and its low-code techniques—like automated preprocessing, feature correlation removal, and hyperparameter search—directly address common performance bottlenecks such as noisy data, multicollinearity, and suboptimal model settings. On the Google Professional Machine Learning Engineer exam, this scenario tests your understanding of how to maximize AutoML’s built-in capabilities without writing custom code, a frequent theme in questions about production ML efficiency. A common trap is to suggest manual feature engineering or custom Python scripts, which violate the “low-code” constraint. Remember the mnemonic “A-F-H”: Automated handling, Feature importance, Hyperparameter tuning—the three pillars of low-code performance improvement in AutoML Tables.

PMLE Architecting low-code ML solutions Practice Question

This PMLE practice question tests your understanding of architecting low-code ml solutions. 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 healthcare company uses AutoML Tables to predict patient readmission risk. The dataset contains 500,000 rows and 200 features, including patient demographics, lab results, and medical history. The model accuracy is lower than expected. The engineer wants to improve performance using low-code techniques. Which THREE actions are most effective? (Choose THREE.)

Question 1hardmulti select
Read the full NAT/PAT explanation →

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

Remove highly correlated features using AutoML Tables' built-in feature importance analysis.

Option B is correct because AutoML Tables provides built-in feature importance analysis that can identify and remove highly correlated features, which reduces noise and multicollinearity, often improving model performance without manual intervention. This is a low-code technique that leverages the platform's automated capabilities to streamline feature selection.

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.

  • Increase the training time budget to the maximum allowed.

    Why it's wrong here

    May not improve accuracy if data quality is the issue.

  • Remove highly correlated features using AutoML Tables' built-in feature importance analysis.

    Why this is correct

    Reduces noise and improves model generalization.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Engineer new features such as time since last admission and number of previous admissions.

    Why this is correct

    Temporal features are often predictive in healthcare.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Use a custom model architecture via AutoML Tables advanced options.

    Why it's wrong here

    AutoML Tables does not allow custom architecture.

  • Enable automated handling of missing values and outliers in the dataset configuration.

    Why this is correct

    Improves data quality and model robustness.

    Related concept

    Read the scenario before looking for a memorised answer.

Common exam traps

Common exam trap: answer the scenario, not the keyword

Google Cloud often tests the misconception that increasing training time or using custom architectures is a low-code solution, when in fact low-code techniques rely on platform automation like built-in feature engineering and data preprocessing, not manual tuning or custom coding.

Detailed technical explanation

How to think about this question

AutoML Tables uses techniques like gradient-boosted trees and neural networks with automatic hyperparameter tuning; removing highly correlated features via feature importance analysis (e.g., using permutation importance or SHAP values) can reduce redundancy and improve generalization. In practice, correlated features can cause the model to overemphasize certain patterns, leading to lower accuracy on unseen data, especially in healthcare datasets with many similar lab results.

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.

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?

Architecting low-code ML solutions — This question tests Architecting low-code ML solutions — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Remove highly correlated features using AutoML Tables' built-in feature importance analysis. — Option B is correct because AutoML Tables provides built-in feature importance analysis that can identify and remove highly correlated features, which reduces noise and multicollinearity, often improving model performance without manual intervention. This is a low-code technique that leverages the platform's automated capabilities to streamline feature selection.

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

Same concept, more angles

3 more ways this is tested on PMLE

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. A company uses AutoML Tables (Vertex AI AutoML for tabular data) to predict customer churn. Their dataset has 10,000 rows and 50 features. During training, they notice the model's performance is poor. Which approach is most likely to improve the model?

medium
  • A.Enable automatic feature engineering transformations
  • B.Switch to BigQuery ML linear regression
  • C.Increase the training budget to 10 node hours
  • D.Remove 20 features to reduce noise

Why A: AutoML Tables (Vertex AI AutoML for tabular data) includes automatic feature engineering transformations such as scaling, one-hot encoding, and feature cross creation. These transformations are essential for capturing non-linear relationships and interactions between features, which can significantly improve model performance when the default preprocessing is insufficient. Enabling this option directly addresses the poor performance by allowing the model to learn more complex patterns from the data.

Variation 2. A company uses AutoML Tables to predict customer churn. The model's AUC is low. Which action is most likely to improve performance?

medium
  • A.Use a different optimization objective
  • B.Add more training data
  • C.Increase the training budget to 10 hours
  • D.Remove features with low importance

Why B: Adding more training data often helps improve model performance. Increasing the training budget alone may not help if data is insufficient. Removing features with low importance could hurt. Changing the optimization objective may not directly improve AUC.

Variation 3. A manufacturing company uses AutoML Tables to predict equipment failure. They want to improve model performance without increasing manual effort. Which three actions should they take? (Choose THREE.)

medium
  • A.Perform feature engineering using Vertex AI Feature Store.
  • B.Use BigQuery to aggregate sensor data before training.
  • C.Enable early stopping to prevent overfitting.
  • D.Deploy the model on a larger machine type to speed up inference.
  • E.Increase the training budget (node hours) for AutoML.

Why A: Option A is correct because Vertex AI Feature Store enables feature engineering and reuse without manual effort, allowing the team to create, store, and serve features consistently for AutoML Tables, which can improve model performance by providing more relevant input data. This aligns with the goal of reducing manual work while enhancing model accuracy through automated feature management.

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.