wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

DP-100 Day 4

Total questions: 10

Worksheet time: 6mins

Name
Class
Date
1.

You have a reference to a Workspace named ws. Which code retrieves the default datastore for the workspace?

a)

default_ds = Datastore.get(ws, 'default')

b)

default_ds = ws.Datastores[0]

c)

default_ds = ws.get_default_datastore()

2.

A datastore contains a CSV file of structured data that you want to use as a Pandas dataframe. Which kind of dataset should you create to make it easy to do this?

a)

A file dataset

b)

A tabular dataset

3.

You want a script to stream data directly from a file dataset. Which mode should you use?

a)

as_mount()

b)

as_download()

c)

as_upload()

4.

You have uploaded some data files to a folder in a blob container, and registered the blob container as a datastore in your Azure Machine Learning workspace. You want to run a script as an experiment that loads the data files and trains a model. What should you do?

a)

Save the experiment script in the same blob folder as the data files.

b)

Create a data reference for the datastore location and pass it to the script as a parameter.

c)

Create global variables for the Azure Storage account name and key in the experiment script.

5.

You are solving a classification task. You must evaluate your model on a limited data sample by using k-fold cross-validation. You start by configuring a k parameter as the number of splits. You need to configure the k parameter for the cross-validation. Which value should you use?

a)

K=1

b)

K=10

c)

K=0.5

d)

K=0.9

6.

You are analyzing a dataset by using Azure Machine Learning Studio. You need to generate a statistical summary that contains the p-value and the unique count for each feature column. Which two modules can you use?

a)

Computer Linear Correlation

b)

Export Count Table

c)

Execute Python Script

d)

Convert to Indicator Values

e)

Summarize Data

7.

You are analyzing a numerical dataset which contains missing values in several columns. You must clean the missing values using an appropriate operation without affecting the dimensionality of the feature set. You need to analyze a full dataset to include all values. Which is best solution

a)

Multiple Imputation by Chained Equation

b)

Remove Entire Row

c)

Replace with mean

8.

You use Azure Machine Learning Studio to build a machine learning experiment.You need to divide data into two distinct datasets. Which module should you use?

a)

Assign Data to Clusters

b)

Load Trained Model

c)

Partition and Sample

d)

Tune Model-Hyperparameters

9.

You are building a binary classification model by using a supplied training set. The training set is imbalanced between two classes. You need to resolve the data imbalance. What are three possible ways to achieve this goal?

a)

Penalize the classification

b)

Resample the dataset using undersampling or oversampling

c)

Normalize the training feature set

d)

Generate synthetic samples in the minority class

e)

Use accuracy as the evaluation metric of the model

10.

You are moving a large dataset from Azure Machine Learning Studio to a Weka environment. You need to format the data for the Weka environment. Which module should you use?

a)

Convert to CSV

b)

Convert to Dataset

c)

Convert to ARFF

d)

Convert to SVMLight