nerdexam
GoogleGoogle

PROFESSIONAL-DATA-ENGINEER · Question #325

PROFESSIONAL-DATA-ENGINEER Question #325: Real Exam Question with Answer & Explanation

Sign in or unlock PROFESSIONAL-DATA-ENGINEER to reveal the answer and full explanation for question #325. The question stem and answer options stay visible for context.

Submitted by noor.lb· Mar 30, 2026Preparing and processing data for machine learning using Google Cloud BigQuery and BigQueryML

Question

You are preparing data that your machine learning team will use to train a model using BigQueryML. They want to predict the price per square foot of real estate. The training data has a column for the price and a column for the number of square feet. Another feature column called 'feature1' contains null values due to missing data. You want to replace the nulls with zeros to keep more data points. Which query should you use? A. B. C. D.

Options

  • ASELECT * EXCEPT (feature1), IFNULL(feature1, 0) AS feature1_cleaned FROM training_data;
  • BSELECT * EXCEPT (price, square_feet), price/square_feet AS price_per_sqft FROM training_data WHERE feature1 IS NOT NULL;
  • CSELECT * EXCEPT(price, square_feet, feature1), price/square_feet AS price_per_sqft, IFNULL(feature1, 0) AS feature1_cleaned FROM training_data;
  • DSELECT * FROM training_data WHERE feature1 IS NOT NULL;

Unlock PROFESSIONAL-DATA-ENGINEER to see the answer

You've previewed enough free PROFESSIONAL-DATA-ENGINEER questions. Unlock PROFESSIONAL-DATA-ENGINEER for full answers, explanations, the timed quiz mode, progress tracking, and the master PDF. Question stem and options stay visible so you can still see what's on the exam.

Topics

#BigQuery SQL#Data Preprocessing#BigQueryML#Feature Engineering
Full PROFESSIONAL-DATA-ENGINEER PracticeBrowse All PROFESSIONAL-DATA-ENGINEER Questions