Certified Machine Learning Professional

Here you have the best Databricks Certified Machine Learning Professional practice exam questions

  • You have 82 total questions across 17 pages (5 per page)
  • These questions were last updated on February 9, 2026
  • This site is not affiliated with or endorsed by Databricks.
Question 1 of 82
Which of the following describes concept drift?
Suggested Answer: C

Concept drift refers to a change in the relationship between input variables and target variables over time. This change can cause the model's predictions to become less accurate as the original relationship the model learned is no longer valid. It is not merely a shift in the distribution of input or target variables but specifically in how they relate to each other.

Community votes

No votes yet

Question 2 of 82
A machine learning engineer is monitoring categorical input variables for a production machine learning application. The engineer believes that missing values are becoming more prevalent in more recent data for a particular value in one of the categorical input variables.
Which of the following tools can the machine learning engineer use to assess their theory?
Suggested Answer: C

To assess if there is a statistically significant association between the time period and the presence of missing values in a particular value of a categorical input variable, the appropriate tool would be the Two-way Chi-squared Test. This test is designed to determine if there is an association between two categorical variables – in this case, the time period (old vs. new data) and the presence or absence of values within a specific category. The one-way Chi-squared test is generally used for goodness-of-fit tests and is not suitable for assessing associations between two categorical variables.

Community votes

No votes yet

Question 3 of 82
A data scientist is using MLflow to track their machine learning experiment. As a part of each MLflow run, they are performing hyperparameter tuning. The data scientist would like to have one parent run for the tuning process with a child run for each unique combination of hyperparameter values.
They are using the following code block:
Exam Certified Machine Learning Professional: Question 3 - Image 1
The code block is not nesting the runs in MLflow as they expected.
Which of the following changes does the data scientist need to make to the above code block so that it successfully nests the child runs under the parent run in MLflow?
Suggested Answer: A

In order to nest the child runs under the parent run, the child run blocks need to be indented within the parent run block. This way, the child runs are executed within the context of the parent run, allowing MLflow to correctly nest the runs.

Community votes

No votes yet

Question 4 of 82
A machine learning engineer wants to log feature importance data from a CSV file at path importance_path with an MLflow run for model model.
Which of the following code blocks will accomplish this task inside of an existing MLflow run block?
Suggested Answer: D

A machine learning engineer who wants to log feature importance data from a CSV file within an MLflow run should use the function mlflow.log_artifact. This function is designed to log files or directories as artifacts of a run, allowing for easy tracking and analysis along with other relevant model information. Therefore, the correct code block to use is mlflow.log_artifact(importance_path, 'feature-importance.csv').

Community votes

No votes yet

Question 5 of 82
Which of the following is a simple, low-cost method of monitoring numeric feature drift?
Suggested Answer: B

A simple, low-cost method of monitoring numeric feature drift is to track summary statistics trends. This involves monitoring basic statistical metrics such as mean, median, standard deviation, and other relevant summary statistics over time to detect any shifts in the distribution of the feature values. This approach is straightforward and does not require complex statistical tests, making it both simple and cost-effective.

Community votes

No votes yet

About the Databricks Certified Machine Learning Professional Certification Exam

About the Exam

The Databricks Certified Machine Learning Professional (Certified Machine Learning Professional) validates your knowledge and skills. Passing demonstrates proficiency and can boost your career prospects in the field.

How to Prepare

Work through all 82 practice questions across 17 pages. Focus on understanding the reasoning behind each answer rather than memorizing responses to be ready for any variation on the real exam.

Why Practice Exams?

Practice exams help you familiarize yourself with the question format, manage your time, and reduce anxiety on the test day. Our Certified Machine Learning Professional questions are regularly updated to reflect the latest exam objectives.