Databricks Certified Machine Learning Professional Exam Practice Questions (P. 4)
- Full Access (60 questions)
- Six months of Premium Access
- Access to one million comments
- Seamless ChatGPT Integration
- Ability to download PDF files
- Anki Flashcard files for revision
- No Captcha & No AdSense
- Advanced Exam Configuration
Question #16
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?
Which of the following SQL commands can be used to accomplish this task?
- AVERSION
- BDESCRIBE
- CHISTORY
- DDESCRIBE HISTORYMost Voted
- ETIMESTAMP
Correct Answer:
D
D

The DESCRIBE HISTORY command is ideal for investigating changes in Delta tables, including when columns were added or removed. By examining the chronological alterations stored, the team can pinpoint exactly when modifications occurred, making it possible to trace back to the specific event of the column's deletion. This SQL command provides comprehensive information about the sequence and nature of changes applied to the Delta table, making it a critical tool for diagnostics in data management and integrity verification.
send
light_mode
delete
Question #17
Which of the following describes label drift?
- ALabel drift is when there is a change in the distribution of the predicted target given by the model
- BNone of these describe label drift
- CLabel drift is when there is a change in the distribution of an input variable
- DLabel drift is when there is a change in the relationship between input variables and target variables
- ELabel drift is when there is a change in the distribution of a target variableMost Voted
Correct Answer:
C
C
send
light_mode
delete
Question #18
Which of the following machine learning model deployment paradigms is the most common for machine learning projects?
- AOn-device
- BStreaming
- CReal-time
- DBatchMost Voted
- ENone of these deployments
Correct Answer:
B
B
send
light_mode
delete
Question #19
A data scientist would like to enable MLflow Autologging for all machine learning libraries used in a notebook. They want to ensure that MLflow Autologging is used no matter what version of the Databricks Runtime for Machine Learning is used to run the notebook and no matter what workspace-wide configurations are selected in the Admin Console.
Which of the following lines of code can they use to accomplish this task?
Which of the following lines of code can they use to accomplish this task?
- Amlflow.sklearn.autolog()
- Bmlflow.spark.autolog()
- Cspark.conf.set(“autologging”, True)
- DIt is not possible to automatically log MLflow runs.
- Emlflow.autolog()Most Voted
Correct Answer:
C
C
send
light_mode
delete
Question #20
A data scientist has developed a model model and computed the RMSE of the model on the test set. They have assigned this value to the variable rmse. They now want to manually store the RMSE value with the MLflow run.
They write the following incomplete code block:

Which of the following lines of code can be used to fill in the blank so the code block can successfully complete the task?
They write the following incomplete code block:

Which of the following lines of code can be used to fill in the blank so the code block can successfully complete the task?
- Alog_artifact
- Blog_model
- Clog_metricMost Voted
- Dlog_param
- EThere is no way to store values like this.
Correct Answer:
A
A
send
light_mode
delete
All Pages