☎  076 959 6407✉  support@quizcrazepro.co.za
Learn. Practice. Build your future.
BlogHelpContact
G

Google Associate Data Practitioner Exam Actual Questions

72 Questions120 Minutes70% Passing Score▣ Updated: Sep 2026

Question 1 of 72

Single answer

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?

A

A. CREATE OR REPLACE MODEL churn_prediction_model OPTIONS(model_type='logistic_reg') AS SELECT * FROM customer_data;

B

B. CREATE OR REPLACE MODEL churn_prediction_model OPTIONS(model_type='logistic_reg') AS SELECT * EXCEPT (churned), churned AS label FROM customer_data;

C

C. CREATE OR REPLACE MODEL churn_prediction_model OPTIONS(model_type='logistic_reg') AS SELECT * EXCEPT (churned) FROM customer_data;

D

D. CREATE OR REPLACE MODEL churn_prediction_model OPTIONS(model_type='logistic_reg') AS SELECT churned as label FROM customer_data;

Correct Answer: A

<p>B. CREATE OR REPLACE MODEL churn_prediction_model OPTIONS(model_type='logistic_reg') AS SELECT * EXCEPT (churned), churned AS label FROM customer_data;</p>

Explanation

The correct answer is highlighted above. Review the wording carefully, then use the next question to continue building your understanding of Google certification topics.

About this practice exam

Review 72 Google questions with answers and explanations. Use the navigation to move through the exam at your own pace.