Here are all the actual test exam dumps for IT exams. Most people prepare for the actual exams with our test dumps to pass their exams. So it's critical to choose and actual test pdf to succeed.

Exam Associate-Data-Practitioner Topic 2 Question 74 Discussion

Actual exam question for Google's Associate-Data-Practitioner exam
Question #: 74
Topic #: 2
Your retail company wants to predict customer churn using historical purchase data stored in BigQuery. The dataset includes customer demographics, purchase history, and a label indicating whether the customer churned or not. You want to build a machine learning model to identify customers at risk of churning. You need to create and train a logistic regression model for predicting customer churn, using the customer_data table with the churned column as the target label. Which BigQuery ML query should you use?

Suggested Answer: B Vote an answer

Comprehensive and Detailed in Depth Explanation:
Why B is correct:BigQuery ML requires the target label to be explicitly named label.
EXCEPT(churned) selects all columns except the churned column, which becomes the features.
churned AS label renames the churned column to label, which is required for BigQuery ML.
logistic_reg is the correct model_type option.
Why other options are incorrect:A: Does not rename the target column to label. Also has a typo in the model type.
C: Only selects the target label, not the features.
D: Has a syntax error with the single quote before except.

by Bernice at Oct 26, 2025, 07:34 PM

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
Nick name: Submit Cancel
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.