hardMultiple SelectObjective-mapped
Improving AutoML Tables Performance with Low-Code Techniques
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.)
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.
⚠ Common exam trap
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.
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.
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.
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.
- ✓
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.
- ✗
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.
Go deeper
Related to this question
About these practice questions
One of 990 original PMLE practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. Learn why practice questions differ from exam dumps →
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: 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.
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
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.