Official Bank 0/57

Databricks Certified Machine Learning Professional (DATABRICKS-MACHINE-LEARNING-PROFESSIONAL) - DataBricks Actual Exam Questions

Last updated on May 13, 2026

97% Exam Compliance
57 Total Questions
1
Question

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: 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?

Question image
Options
A

Indent the child run blocks within the parent run block

B

Add the nested=True argument to the parent run

C

Remove the nested=True argument from the child runs

D

Provide the same name to the run name parameter for all three run blocks

E

Add the nested=True argument to the parent run and remove the nested=True arguments from the child runs

Discussion (0 comments)

to join the discussion

Community Discussion

No discussions yet. Be the first to ask!

2
Question

After a data scientist noticed that a column was missing from a production feature set stored as a Delta table, the machine learning engineering team has been tasked with determining when the column was dropped from the feature set. Which of the following SQL commands can be used to accomplish this task?

Options
A

VERSION

B

DESCRIBE

C

HISTORY

D

DESCRIBE HISTORY

E

TIMESTAMP

Discussion (0 comments)

to join the discussion

Community Discussion

No discussions yet. Be the first to ask!

3
Question

A data scientist set up a machine learning pipeline to automatically log a data visualization with each run. They now want to view the visualizations in Databricks. Which of the following locations in Databricks will show these data visualizations?

Options
A

The MLflow Model Registry Model paqe

B

The Artifacts section of the MLflow Experiment page

C

Logged data visualizations cannot be viewed in Databricks

D

The Artifacts section of the MLflow Run page

E

The Figures section of the MLflow Run page

Discussion (0 comments)

to join the discussion

Community Discussion

No discussions yet. Be the first to ask!

4
Question

Which of the following is a reason for using Jensen-Shannon (JS) distance over a Kolmogorov- Smirnov (KS) test for numeric feature drift detection?

Options
A

All of these reasons

B

JS is not normalized or smoothed

C

None of these reasons

D

JS is more robust when working with large datasets

E

JS does not require any manual threshold or cutoff determinations

Discussion (0 comments)

to join the discussion

Community Discussion

No discussions yet. Be the first to ask!

5
Question

A data scientist wants to remove the star_rating column from the Delta table at the location path. To do this, they need to load in data and drop the star_rating column. Which of the following code blocks accomplishes this task?

Options
A

spark.read.format(“delta”).load(path).drop(“star_rating”)

B

spark.read.format(“delta”).table(path).drop(“star_rating”)

C

Delta tables cannot be modified

D

spark.read.table(path).drop(“star_rating”)

E

spark.sql(“SELECT * EXCEPT star_rating FROM path”)

Discussion (0 comments)

to join the discussion

Community Discussion

No discussions yet. Be the first to ask!

Finish Practice?

Are you sure you want to finish? This will end your practice session.