ExamGecko

Microsoft DP-100 Practice Test - Questions Answers, Page 7

Question list
Search
Search

List of questions

Search

Related questions











You must store data in Azure Blob Storage to support Azure Machine Learning.

You need to transfer the data into Azure Blob Storage.

What are three possible ways to achieve the goal? Each correct answer presents a complete solution.

NOTE: Each correct selection is worth one point.

A.
Bulk Insert SQL Query
A.
Bulk Insert SQL Query
Answers
B.
AzCopy
B.
AzCopy
Answers
C.
Python script
C.
Python script
Answers
D.
Azure Storage Explorer
D.
Azure Storage Explorer
Answers
E.
Bulk Copy Program (BCP)
E.
Bulk Copy Program (BCP)
Answers
Suggested answer: B, C, D

Explanation:

You can move data to and from Azure Blob storage using different technologies:

Azure Storage-Explorer

AzCopy

Python

SSIS

Reference:

https://docs.microsoft.com/en-us/azure/machine-learning/team-data-science-process/move-azure-blob

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
A.
Convert to CSV
Answers
B.
Convert to Dataset
B.
Convert to Dataset
Answers
C.
Convert to ARFF
C.
Convert to ARFF
Answers
D.
Convert to SVMLight
D.
Convert to SVMLight
Answers
Suggested answer: C

Explanation:

Use the Convert to ARFF module in Azure Machine Learning Studio, to convert datasets and results in Azure Machine Learning to the attribute-relation file format used by the Weka toolset. This format is known as ARFF.

The ARFF data specification for Weka supports multiple machine learning tasks, including data preprocessing, classification, and feature selection. In this format, data is organized by entites and their attributes, and is contained in a single text file.

Reference: https://docs.microsoft.com/en-us/azure/machine-learning/studio-module-reference/convert-to-arff

You plan to create a speech recognition deep learning model.

The model must support the latest version of Python.

You need to recommend a deep learning framework for speech recognition to include in the Data Science Virtual Machine (DSVM).

What should you recommend?

A.
Rattle
A.
Rattle
Answers
B.
TensorFlow
B.
TensorFlow
Answers
C.
Weka
C.
Weka
Answers
D.
Scikit-learn
D.
Scikit-learn
Answers
Suggested answer: B

Explanation:

TensorFlow is an open-source library for numerical computation and large-scale machine learning. It uses Python to provide a convenient front-end API for building applications with the framework TensorFlow can train and run deep neural networks for handwritten digit classification, image recognition, word embeddings, recurrent neural networks, sequence-to-sequence models for machine translation, natural language processing, and PDE (partial differential equation) based simulations.

Incorrect Answers:

A: Rattle is the R analytical tool that gets you started with data analytics and machine learning.

C: Weka is used for visual data mining and machine learning software in Java.

D: Scikit-learn is one of the most useful libraries for machine learning in Python. It is on NumPy, SciPy and matplotlib, this library contains a lot of efficient tools for machine learning and statistical modeling including classification, regression, clustering and dimensionality reduction.

Reference:

https://www.infoworld.com/article/3278008/what-is-tensorflow-the-machine-learning-library-explained.html

You plan to use a Deep Learning Virtual Machine (DLVM) to train deep learning models using Compute Unified Device Architecture (CUDA) computations.

You need to configure the DLVM to support CUDA.

What should you implement?

A.
Solid State Drives (SSD)
A.
Solid State Drives (SSD)
Answers
B.
Computer Processing Unit (CPU) speed increase by using overclocking
B.
Computer Processing Unit (CPU) speed increase by using overclocking
Answers
C.
Graphic Processing Unit (GPU)
C.
Graphic Processing Unit (GPU)
Answers
D.
High Random Access Memory (RAM) configuration
D.
High Random Access Memory (RAM) configuration
Answers
E.
Intel Software Guard Extensions (Intel SGX) technology
E.
Intel Software Guard Extensions (Intel SGX) technology
Answers
Suggested answer: C

Explanation:

A Deep Learning Virtual Machine is a pre-configured environment for deep learning using GPU instances.

Reference:

https://azuremarketplace.microsoft.com/en-au/marketplace/apps/microsoft-ads.dsvm-deep-learning

You plan to use a Data Science Virtual Machine (DSVM) with the open source deep learning frameworks Caffe2 and PyTorch.

You need to select a pre-configured DSVM to support the frameworks.

What should you create?

A.
Data Science Virtual Machine for Windows 2012
A.
Data Science Virtual Machine for Windows 2012
Answers
B.
Data Science Virtual Machine for Linux (CentOS)
B.
Data Science Virtual Machine for Linux (CentOS)
Answers
C.
Geo AI Data Science Virtual Machine with ArcGIS
C.
Geo AI Data Science Virtual Machine with ArcGIS
Answers
D.
Data Science Virtual Machine for Windows 2016
D.
Data Science Virtual Machine for Windows 2016
Answers
E.
Data Science Virtual Machine for Linux (Ubuntu)
E.
Data Science Virtual Machine for Linux (Ubuntu)
Answers
Suggested answer: E

Explanation:

Caffe2 and PyTorch is supported by Data Science Virtual Machine for Linux.

Microsoft offers Linux editions of the DSVM on Ubuntu 16.04 LTS and CentOS 7.4. Only the DSVM on Ubuntu is preconfigured for Caffe2 and PyTorch.

Incorrect Answers:

D: Caffe2 and PytOCH are only supported in the Data Science Virtual Machine for Linux.

Reference:

https://docs.microsoft.com/en-us/azure/machine-learning/data-science-virtual-machine/overview

You are developing a data science workspace that uses an Azure Machine Learning service.

You need to select a compute target to deploy the workspace.

What should you use?

A.
Azure Data Lake Analytics
A.
Azure Data Lake Analytics
Answers
B.
Azure Databricks
B.
Azure Databricks
Answers
C.
Azure Container Service
C.
Azure Container Service
Answers
D.
Apache Spark for HDInsight
D.
Apache Spark for HDInsight
Answers
Suggested answer: C

Explanation:

Azure Container Instances can be used as compute target for testing or development. Use for low-scale CPU-based workloads that require less than 48 GB of RAM.

Reference:

https://docs.microsoft.com/en-us/azure/machine-learning/service/how-to-deploy-and-where

You are solving a classification task.

The dataset is imbalanced.

You need to select an Azure Machine Learning Studio module to improve the classification accuracy.

Which module should you use?

A.
Permutation Feature Importance
A.
Permutation Feature Importance
Answers
B.
Filter Based Feature Selection
B.
Filter Based Feature Selection
Answers
C.
Fisher Linear Discriminant Analysis
C.
Fisher Linear Discriminant Analysis
Answers
D.
Synthetic Minority Oversampling Technique (SMOTE)
D.
Synthetic Minority Oversampling Technique (SMOTE)
Answers
Suggested answer: D

Explanation:

Use the SMOTE module in Azure Machine Learning Studio (classic) to increase the number of underrepresented cases in a dataset used for machine learning. SMOTE is a better way of increasing the number of rare cases than simply duplicating existing cases.

You connect the SMOTE module to a dataset that is imbalanced. There are many reasons why a dataset might be imbalanced: the category you are targeting might be very rare in the population, or the data might simply be difficult to collect. Typically, you use SMOTE when the class you want to analyze is under-represented.

Reference:

https://docs.microsoft.com/en-us/azure/machine-learning/studio-module-reference/smote

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
A.
Assign Data to Clusters
Answers
B.
Load Trained Model
B.
Load Trained Model
Answers
C.
Partition and Sample
C.
Partition and Sample
Answers
D.
Tune Model-Hyperparameters
D.
Tune Model-Hyperparameters
Answers
Suggested answer: C

Explanation:

Partition and Sample with the Stratified split option outputs multiple datasets, partitioned using the rules you specified.

Reference:

https://docs.microsoft.com/en-us/azure/machine-learning/studio-module-reference/partition-and-sample

You are creating a machine learning model. You have a dataset that contains null rows.

You need to use the Clean Missing Data module in Azure Machine Learning Studio to identify and resolve the null and missing data in the dataset.

Which parameter should you use?

A.
Replace with mean
A.
Replace with mean
Answers
B.
Remove entire column
B.
Remove entire column
Answers
C.
Remove entire row
C.
Remove entire row
Answers
D.
Hot Deck
D.
Hot Deck
Answers
E.
Custom substitution value
E.
Custom substitution value
Answers
F.
Replace with mode
F.
Replace with mode
Answers
Suggested answer: C

Explanation:

Remove entire row: Completely removes any row in the dataset that has one or more missing values. This is useful if the missing value can be considered randomly missing.

Reference: https://docs.microsoft.com/en-us/azure/machine-learning/studio-module-reference/clean-missing-data

You plan to provision an Azure Machine Learning Basic edition workspace for a data science project.

You need to identify the tasks you will be able to perform in the workspace.

Which three tasks will you be able to perform? Each correct answer presents a complete solution.

NOTE: Each correct selection is worth one point.

A.
Create a Compute Instance and use it to run code in Jupyter notebooks.
A.
Create a Compute Instance and use it to run code in Jupyter notebooks.
Answers
B.
Create an Azure Kubernetes Service (AKS) inference cluster.
B.
Create an Azure Kubernetes Service (AKS) inference cluster.
Answers
C.
Use the designer to train a model by dragging and dropping pre-defined modules.
C.
Use the designer to train a model by dragging and dropping pre-defined modules.
Answers
D.
Create a tabular dataset that supports versioning.
D.
Create a tabular dataset that supports versioning.
Answers
E.
Use the Automated Machine Learning user interface to train a model.
E.
Use the Automated Machine Learning user interface to train a model.
Answers
Suggested answer: A, B, D

Explanation:

Incorrect Answers:

C, E: The UI is included the Enterprise edition only.

Reference:

https://azure.microsoft.com/en-us/pricing/details/machine-learning/

Total 433 questions
Go to page: of 44