Designing and Implementing a Data Science Solution on Azure
Last Update Jun 14, 2025
Total Questions : 476
To help you prepare for the DP-100 Microsoft exam, we are offering free DP-100 Microsoft exam questions. All you need to do is sign up, provide your details, and prepare with the free DP-100 practice questions. Once you have done that, you will have access to the entire pool of Designing and Implementing a Data Science Solution on Azure DP-100 test questions which will help you better prepare for the exam. Additionally, you can also find a range of Designing and Implementing a Data Science Solution on Azure resources online to help you better understand the topics covered on the exam, such as Designing and Implementing a Data Science Solution on Azure DP-100 video tutorials, blogs, study guides, and more. Additionally, you can also practice with realistic Microsoft DP-100 exam simulations and get feedback on your progress. Finally, you can also share your progress with friends and family and get encouragement and support from them.
You need to build a feature extraction strategy for the local models.
How should you complete the code segment? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
A set of CSV files contains sales records. All the CSV files have the same data schema.
Each CSV file contains the sales record for a particular month and has the filename sales.csv. Each file in stored in a folder that indicates the month and year when the data was recorded. The folders are in an Azure blob container for which a datastore has been defined in an Azure Machine Learning workspace. The folders are organized in a parent folder named sales to create the following hierarchical structure:
At the end of each month, a new folder with that month’s sales file is added to the sales folder.
You plan to use the sales data to train a machine learning model based on the following requirements:
You must define a dataset that loads all of the sales data to date into a structure that can be easily converted to a dataframe.
You must be able to create experiments that use only data that was created before a specific previous month, ignoring any data that was added after that month.
You must register the minimum number of datasets possible.
You need to register the sales data as a dataset in Azure Machine Learning service workspace.
What should you do?
You have a Python script that executes a pipeline. The script includes the following code:
from azureml.core import Experiment
pipeline_run = Experiment(ws, 'pipeline_test').submit(pipeline)
You want to test the pipeline before deploying the script.
You need to display the pipeline run details written to the STDOUT output when the pipeline completes.
Which code segment should you add to the test script?
You are using Azure Machine Learning to monitor a trained and deployed model. You implement Event Grid to respond to Azure Machine Learning events.
Model performance has degraded due to model input data changes.
You need to trigger a remediation ML pipeline based on an Azure Machine Learning event.
Which event should you use?