Questions Flashcards

1
Q

You are designing an AI solution that will analyze millions of pictures. You need to recommend a solution for storing the pictures. The solution must minimize costs.
Which storage solution should you recommend?

A. an Azure Data Lake store
B. Azure File Storage
C. Azure Blob storage
D. Azure Table storage

A

Correct Answer: C

Data Lake will be a bit more expensive although they are in close range of each other. Blob storage has more options for pricing depending upon things like how frequently you need to access your data (cold vs hot storage).

References:
http://blog.pragmaticworks.com/azure-data-lake-vs-azure-blob-storage-in-data-warehousing

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

You are configuring data persistence for a Microsoft Bot Framework application. The application requires a structured NoSQL cloud data store.
You need to identify a storage solution for the application. The solution must minimize costs.
What should you identify?

A. Azure Blob storage
B. Azure Cosmos DB
C. Azure HDInsight
D. Azure Table storage

A

Correct Answer: D

Table Storage is a NoSQL key-value store for rapid development using massive semi-structured datasets

You can develop applications on Cosmos DB using popular NoSQL APIs.
Both services have a different scenario and pricing model.
While Azure Storage Tables is aimed at high capacity on a single region (optional secondary read only region but no failover), indexing by PK/RK and storage- optimized pricing, Azure Cosmos DB Tables aims for high throughput, global distribution (multiple failover), SLA-backed predictive performance with automatic indexing of each attribute/property and a pricing model focused on throughput.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

You have an Azure Machine Learning model that is deployed to a web service.
You plan to publish the web service by using the name ml.contoso.com.
You need to recommend a solution to ensure that access to the web service is encrypted.
Which three actions should you recommend? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.

A. Generate a shared access signature (SAS)
B. Obtain an SSL certificate
C. Add a deployment slot
D. Update the web service
E. Update DNS
F. Create an Azure Key Vault
A

Correct Answer: BDE

The process of securing a new web service or an existing one is as follows:

  1. Get a domain name.
  2. Get a digital certificate.
  3. Deploy or update the web service with the SSL setting enabled.
  4. Update your DNS to point to the web service.

Note: To deploy (or re-deploy) the service with SSL enabled, set the ssl_enabled parameter to True, wherever applicable. Set the ssl_certificate parameter to the value of the certificate file and the ssl_key to the value of the key file.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Your company recently deployed several hardware devices that contain sensors.
The sensors generate new data on an hourly basis. The data generated is stored on-premises and retained for several years.
During the past two months, the sensors generated 300 GB of data.
You plan to move the data to Azure and then perform advanced analytics on the data.
You need to recommend an Azure storage solution for the data.
Which storage solution should you recommend?

A. Azure Queue storage
B. Azure Cosmos DB
C. Azure Blob storage
D. Azure SQL Database

A

Correct Answer: C

References:
https://docs.microsoft.com/en-us/azure/architecture/data-guide/technology-choices/data-storage

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

You plan to design an application that will use data from Azure Data Lake and perform sentiment analysis by using Azure Machine Learning algorithms.
The developers of the application use a mix of Windows- and Linux-based environments. The developers contribute to shared GitHub repositories.
You need all the developers to use the same tool to develop the application.
What is the best tool to use? More than one answer choice may achieve the goal.

A. Microsoft Visual Studio Code
B. Azure Notebooks
C. Azure Machine Learning Studio
D. Microsoft Visual Studio

A

Correct Answer: C

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

You have several AI applications that use an Azure Kubernetes Service (AKS) cluster. The cluster supports a maximum of 32 nodes.
You discover that occasionally and unpredictably, the application requires more than 32 nodes.
You need to recommend a solution to handle the unpredictable application load.
Which scaling method should you recommend?

A. horizontal pod autoscaler
B. cluster autoscaler
C. manual scaling
D. Azure Container Instances

A

Correct Answer: B

To keep up with application demands in Azure Kubernetes Service (AKS), you may need to adjust the number of nodes that run your workloads. The cluster autoscaler component can watch for pods in your cluster that can’t be scheduled because of resource constraints. When issues are detected, the number of nodes is increased to meet the application demand. Nodes are also regularly checked for a lack of running pods, with the number of nodes then decreased as needed. This ability to automatically scale up or down the number of nodes in your AKS cluster lets you run an efficient, cost-effective cluster.
References:
https://docs.microsoft.com/en-us/azure/aks/cluster-autoscaler

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

You deploy an infrastructure for a big data workload.
You need to run Azure HDInsight and Microsoft Machine Learning Server. You plan to set the RevoScaleR compute contexts to run rx function calls in parallel.
What are three compute contexts that you can use for Machine Learning Server? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.
A. SQL
B. Spark
C. local parallel
D. HBase
E. local sequential

A

Correct Answer: ABC

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Your company has 1,000 AI developers who are responsible for provisioning environments in Azure.
You need to control the type, size, and location of the resources that the developers can provision.
What should you use?

A. Azure Key Vault
B. Azure service principals
C. Azure managed identities
D. Azure Security Center
E. Azure Policy
A

Correct Answer: E

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

You are designing an AI solution in Azure that will perform image classification.
You need to identify which processing platform will provide you with the ability to update the logic over time. The solution must have the lowest latency for inferencing without having to batch.
Which compute target should you identify?

A. graphics processing units (GPUs)
B. field-programmable gate arrays (FPGAs)
C. central processing units (CPUs)
D. application-specific integrated circuits (ASICs)

A

Correct Answer: B

FPGAs, such as those available on Azure, provide performance close to ASICs. They are also flexible and reconfigurable over time, to implement new logic.
Incorrect Answers:
D: ASICs are custom circuits, such as Google’s TensorFlow Processor Units (TPU), provide the highest efficiency. They can’t be reconfigured as your needs change.
References:
https://docs.microsoft.com/en-us/azure/machine-learning/service/concept-accelerate-with-fpgas

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

You have a solution that runs on a five-node Azure Kubernetes Service (AKS) cluster. The cluster uses an N-series virtual machine.
An Azure Batch AI process runs once a day and rarely on demand.
You need to recommend a solution to maintain the cluster configuration when the cluster is not in use. The solution must not incur any compute costs.
What should you include in the recommendation?

A. Downscale the cluster to one node
B. Downscale the cluster to zero nodes
C. Delete the cluster

A

Correct Answer: A

An AKS cluster has one or more nodes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Your company has recently deployed 5,000 Internet-connected sensors for a planned AI solution.
You need to recommend a computing solution to perform a real-time analysis of the data generated by the sensors.
Which computing solution should you recommend?

A. an Azure HDInsight Storm cluster
B. Azure Notification Hubs
C. an Azure HDInsight Hadoop cluster
D. an Azure HDInsight R cluster

A

Correct Answer: A

NOTE: Storm=a computation system to process streams of data in real time

Compared to LinuxAcademy:

A. An Azure HDInsight Kafka cluster (Correct)
B. Azure Notification Hubs
C. An Azure HDInsight Spark cluster
D. An Azure HDInsight Hadoop cluster

An Azure HDInsight Kafka cluster is a real-time analytics engine and is perfect for this type of solution.

HDInsight Hadoop would be used for managing big-data analytics and not the best solution among these answers.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

You deploy an application that performs sentiment analysis on the data stored in Azure Cosmos DB.
Recently, you loaded a large amount of data to the database. The data was for a customer named Contoso, Ltd.
You discover that queries for the Contoso data are slow to complete, and the queries slow the entire application.
You need to reduce the amount of time it takes for the queries to complete. The solution must minimize costs.
What is the best way to achieve the goal? More than one answer choice may achieve the goal. Select the BEST answer.

A. Change the request units.
B. Change the partitioning strategy.
C. Change the transaction isolation level.
D. Migrate the data to the Cosmos DB database.

A

Correct Answer: B

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

You have an AI application that uses keys in Azure Key Vault.
Recently, a key used by the application was deleted accidentally and was unrecoverable.
You need to ensure that if a key is deleted, it is retained in the key vault for 90 days.
Which two features should you configure? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.
A. The expiration date on the keys
B. Soft delete
C. Purge protection
D. Auditors
E. The activation date on the keys

A

Correct Answer: BC

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

You need to build a solution to monitor Twitter. The solution must meet the following requirements:
✑ Send an email message to the marketing department when negative Twitter messages are detected.
✑ Run sentiment analysis on Twitter messages that mention specific tags.
✑ Use the least amount of custom code possible.
Which two services should you include in the solution? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.
A. Azure Databricks
B. Azure Stream Analytics
C. Azure Functions
D. Azure Cognitive Services
E. Azure Logic Apps

A

Correct Answer: BE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

You plan to deploy an AI solution that tracks the behavior of 10 custom mobile apps. Each mobile app has several thousand users.
You need to recommend a solution for real-time data ingestion for the data originating from the mobile app users.
Which Microsoft Azure service should you include in the recommendation?

A. Azure Event Hubs
B. Azure Service Bus queries
C. Azure Service Bus topics and subscriptions
D. Apache Storm on Azure HDInsight

A

Correct Answer: A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

You plan to deploy Azure IoT Edge devices that will each store more than 10,000 images locally and classify the images by using a Custom Vision Service classifier.
Each image is approximately 5 MB.
You need to ensure that the images persist on the devices for 14 days.

What should you use?

A. The device cache
B. Azure Blob storage on the IoT Edge devices
C. Azure Stream Analytics on the IoT Esge devices
D. Microsoft SQL Server on the IoT Edge devices

A

Correct Answer: B

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

You have a database that contains sales data.
You plan to process the sales data by using two data streams named Stream1 and Stream2. Stream1 will be used for purchase order data. Stream2 will be used for reference data.
The reference data is stored in CSV files.
You need to recommend an ingestion solution for each data stream.
What two solutions should you recommend? Each correct answer is a complete solution.
NOTE: Each correct selection is worth one point.

A. an Azure event hub for Stream1 and Azure Blob storage for Stream2
B. Azure Blob storage for Stream1 and Stream2
C. an Azure event hub for Stream1 and Stream2
D. Azure Blob storage for Stream1 and Azure Cosmos DB for Stream2
E. Azure Cosmos DB for Stream1 and an Azure event hub for Stream2

A

Correct Answer: C - an Azure event hub for Stream1 and Stream2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You are developing an application that uses an Azure Kubernetes Service (AKS) cluster.
You are troubleshooting a node issue.
You need to connect to an AKS node by using SSH.
Solution: You create a managed identity for AKS, and then you create an SSH connection.
Does this meet the goal?
A. Yes
B. No

A

Correct Answer: B

Instead add an SSH key to the node, and then you create an SSH connection.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You are developing an application that uses an Azure Kubernetes Service (AKS) cluster.
You are troubleshooting a node issue.
You need to connect to an AKS node by using SSH.
Solution: You change the permissions of the AKS resource group, and then you create an SSH connection.
Does this meet the goal?
A. Yes
B. No

A

Correct Answer: B

Instead add an SSH key to the node, and then you create an SSH connection.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You are developing an application that uses an Azure Kubernetes Service (AKS) cluster.
You are troubleshooting a node issue.
You need to connect to an AKS node by using SSH.
Solution: You add an SSH key to the node, and then you create an SSH connection.
Does this meet the goal?
A. Yes
B. No

A

Correct Answer: A

By default, SSH keys are generated when you create an AKS cluster. If you did not specify your own SSH keys when you created your AKS cluster, add your public SSH keys to the AKS nodes.
You also need to create an SSH connection to the AKS node.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

You are developing a Computer Vision application.
You plan to use a workflow that will load data from an on-premises database to Azure Blob storage, and then connect to an Azure Machine Learning service.
What should you use to orchestrate the workflow?

A. Azure Kubernetes Service (AKS)
B. Azure Pipelines
C. Azure Data Factory
D. Azure Container Instances

A

Correct Answer: C

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

Your company has a data team of Transact-SQL experts.
You plan to ingest data from multiple sources into Azure Event Hubs.
You need to recommend which technology the data team should use to move and query data from Event Hubs to Azure Storage. The solution must leverage the data team’s existing skills.
What is the best recommendation to achieve the goal? More than one answer choice may achieve the goal.

A. Azure Notification Hubs
B. Azure Event Grid
C. Apache Kafka streams
D. Azure Stream Analytics

A

Correct Answer: D

Stream analytics used T-SQL
https://docs.microsoft.com/en-us/azure/architecture/example-scenario/ai/intelligent-apps-image-processing

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

You plan to design a solution for an AI implementation that uses data from IoT devices.
You need to recommend a data storage solution for the IoT devices that meets the following requirements:
✑ Allow data to be queried in real-time as it streams into the solution.
✑ Provide the lowest amount of latency for loading data into the solution.
What should you include in the recommendation?
A. a Microsoft Azure Table Storage solution
B. a Microsoft Azure HDInsight R Server cluster
C. a Microsoft Azure HDInsight Hadoop cluster
D. a Microsoft Azure SQL database that has In-Memory OLTP enabled

A

Correct Answer: B

By combining enterprise-scale R analytics software with the power of Apache Hadoop and Apache Spark, Microsoft R Server for HDInsight gives you the scale and performance you need. Multi-threaded math libraries and transparent parallelization in R Server handle up to 1000x more data and up to 50x faster speeds than open-source R, which helps you to train more accurate models for better predictions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

You plan to deploy two AI applications named AI1 and AI2. The data for the applications will be stored in a relational database.
You need to ensure that the users of AI1 and AI2 can see only data in each user’s respective geographic region. The solution must be enforced at the database level by using row-level security.
Which database solution should you use to store the application data?

A. Microsoft SQL Server on a Microsoft Azure virtual machine
B. Microsoft Azure Database for MySQL
C. Microsoft Azure Data Lake Store
D. Microsoft Azure Cosmos DB

A

Correct Answer: A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Q

You are designing an AI workflow that will aggregate data stored in Azure as JSON documents.
You expect to store more than 2 TB of new data daily.
You need to choose the data storage service for the data. The solution must minimize costs.
Which data storage service should you choose?
A. Azure Manage Disks
B. Azure Blob Storage
C. Azure File Storage
D. Azure Data Lake Storage

A

Correct Answer: B (since Cosmos DB not listed)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
26
Q

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You are developing an application that uses an Azure Kubernetes Service (AKS) cluster.
You are troubleshooting a node issue.
You need to connect to an AKS node by using SSH.
Solution: You run the kubect1 command, and then you create an SSH connection.
Does this meet the goal?

A. Yes
B. No

A

Correct Answer: B

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
27
Q

Your company has a data team of Scala and R experts.
You plan to ingest data from multiple Apache Kafka streams.
You need to recommend a processing technology to broker messages at scale from Kafka streams to Azure Storage.
What should you recommend?
A. Azure Databricks
B. Azure Functions
C. Azure HDInsight with Apache Storm
D. Azure HDInsight with Microsoft Machine Learning Server

A

Correct Answer: A - Azure Databricks

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
28
Q

You are designing an AI application that will use an azure Machine Learning Studio experiment.
The source data contains more than 200 TB of relational tables. The experiment will run once a month.
You need to identify a data storage solution for the application. The solution must minimize compute costs.
Which data storage solution should you identify?
A. Azure Database for MySQL
B. Azure SQL Database
C. Azure SQL Data Warehouse

A

Correct Answer: C

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
29
Q

You design an AI workflow that combines data from multiple data sources for analysis. The data sources are composed of:
✑ JSON files uploaded to an Azure Storage account
✑ On-premises Oracle databases
✑ Azure SQL databases
Which service should you use to ingest the data?
A. Azure Data Factory
B. Azure SQL Data Warehouse
C. Azure Data Lake Storage
D. Azure Databricks

A

Correct Answer: A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
30
Q

You have thousands of images that contain text.
You need to process the text from the images to a machine-readable character stream.
Which Azure Cognitive Services service should you use?
A. the Image Moderation API
B. Text Analytics
C. Translator Text
D. Computer Vision

A

Correct Answer: D

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
31
Q
You need to build an API pipeline that analyzes streaming data. The pipeline will perform the following:
✑ Visual text recognition
✑ Audio transcription
✑ Sentiment analysis
✑ Face detection
Which Azure Cognitive Services should you use in the pipeline?
A. Custom Speech Service
B. Face API
C. Text Analytics
D. Video Indexer
A

Correct Answer: D

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
32
Q

You design an AI solution that uses an Azure Stream Analytics job to process data from an Azure IoT hub. The IoT hub receives time series data from thousands of IoT devices at a factory.
The job outputs millions of messages per second. Different applications consume the messages as they are available. The messages must be purged.
You need to choose an output type for the job.
What is the best output type to achieve the goal? More than one answer choice may achieve the goal.
A. Azure Event Hubs
B. Azure SQL Database
C. Azure Blob storage
D. Azure Cosmos DB

A

Correct Answer: D

Messages in Event Hubs cannot be deleted

With Time to Live or TTL, Azure Cosmos DB provides the ability to delete items automatically from a container after a certain time period

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
33
Q
You need to deploy cognitive search.
You provision an Azure Search service.
What should you do next?
A. Search by using the .NET SDK.
B. Load data.
C. Search by using the REST API.
D. Create an index.
A

Correct Answer: D

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
34
Q

You need to design an application that will analyze real-time data from financial feeds.
The data will be ingested into Azure IoT Hub. The data must be processed as quickly as possible in the order in which it is ingested.
Which service should you include in the design?
A. Azure Data Factory
B. Azure Queue storage
C. Azure Stream Analytics
D. Azure Notification Hubs

A

Correct Answer: C

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
35
Q

Question #7Topic 3
You are designing an AI solution that will provide feedback to teachers who train students over the Internet. The students will be in classrooms located in remote areas. The solution will capture video and audio data of the students in the classrooms.

You need to recommend Azure Cognitive Services for the AI solution to meet the following requirements:

✑ Alert teachers if a student seems angry or distracted.
✑ Identify each student in the classrooms for attendance purposes.
✑ Allow the teachers to log the text of conversations between themselves and the students.

Which Cognitive Services should you recommend?

A. Computer Vision, Text Analytics, and Face API
B. Video Indexer, Face API, and Text Analytics
C. Computer Vision, Speech to Text, and Text Analytics
D. Text Analytics, QnA Maker, and Computer Vision
E. Video Indexer, Speech to Text, and Face API

A

Correct Answer: E

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
36
Q

You create an Azure Cognitive Services resource.
You develop needs to be able to retrieve the keys used by the resource. The solution must use the principle of least privilege.
What is the best role to assign to the developer? More than one answer choice may achieve the goal.
A. Security Manager
B. Security Reader
C. Cognitive Services Contributor
D. Cognitive Services User

A

Correct Answer: D

In par with LinuxAcademy

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
37
Q

Your company plans to deploy an AI solution that processes IoT data in real-time.
You need to recommend a solution for the planned deployment that meets the following requirements:
✑ Sustain up to 50 Mbps of events without throttling.
✑ Retain data for 60 days.
What should you recommend?
A. Apache Kafka
B. Microsoft Azure IoT Hub
C. Microsoft Azure Data Factory
D. Microsoft Azure Machine Learning

A

Correct Answer: A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
38
Q

You are designing a solution that will use the Azure Content Moderator service to moderate user-generated content.
You need to moderate custom predefined content without repeatedly scanning the collected content.
Which API should you use? (one)

A. Term List API
B. Text Moderation API
C. Image Moderation API
D. Workflow API

A

Correct Answer: A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
39
Q

You need to configure versioning and logging for Azure Machine Learning models.
Which Machine Learning service application should you use?
A. Models
B. Activities
C. Experiments
D. Pipelines
E. Deployments

A

Correct Answer: E

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
40
Q

Your company recently purchased several hundred hardware devices that contain sensors.
You need to recommend a solution to process the sensor data. The solution must provide the ability to write back configuration changes to the devices.
What should you include in the recommendation?
A. Microsoft Azure IoT Hub
B. API apps in Microsoft Azure App Service
C. Microsoft Azure Event Hubs
D. Microsoft Azure Notification Hubs

A

Correct Answer: A - Microsoft Azure IoT Hub

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
41
Q

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You have Azure IoT Edge devices that generate streaming data.
On the devices, you need to detect anomalies in the data by using Azure Machine Learning models. Once an anomaly is detected, the devices must add information about the anomaly to the Azure IoT Hub stream.
Solution: You deploy Azure Functions as an IoT Edge module.
Does this meet the goal?
A. Yes
B. No

A

Correct Answer: B

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
42
Q

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You have Azure IoT Edge devices that generate streaming data.
On the devices, you need to detect anomalies in the data by using Azure Machine Learning models. Once an anomaly is detected, the devices must add information about the anomaly to the Azure IoT Hub stream.
Solution: You deploy Azure Stream Analytics as an IoT Edge module.
Does this meet the goal?
A. Yes
B. No

A

Correct Answer: A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
43
Q

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You have Azure IoT Edge devices that generate streaming data.
On the devices, you need to detect anomalies in the data by using Azure Machine Learning models. Once an anomaly is detected, the devices must add information about the anomaly to the Azure IoT Hub stream.
Solution: You expose a Machine Learning model as an Azure web service.
Does this meet the goal?
A. Yes
B. No

A

Correct Answer: B

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
44
Q

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You create several AI models in Azure Machine Learning Studio.
You deploy the models to a production environment.
You need to monitor the compute performance of the models.
Solution: You enable Model data collection.
Does this meet the goal?
A. Yes
B. No

A

Correct Answer: A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
45
Q

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You create several AI models in Azure Machine Learning Studio.
You deploy the models to a production environment.
You need to monitor the compute performance of the models.
Solution: You enable AppInsights diagnostics.
Does this meet the goal?
A. Yes
B. No

A

Correct Answer: B

46
Q

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You create several AI models in Azure Machine Learning Studio.
You deploy the models to a production environment.
You need to monitor the compute performance of the models.
Solution: You write a custom scoring script.
Does this meet the goal?
A. Yes
B. No

A

Correct Answer: B

47
Q

Your company has recently purchased and deployed 25,000 IoT devices.
You need to recommend a data analysis solution for the devices that meets the following requirements:
✑ Each device must use its own credentials for identity.
✑ Each device must be able to route data to multiple endpoints.
✑ The solution must require the minimum amount of customized code.
What should you include in the recommendation?
A. Microsoft Azure Notification Hubs
B. Microsoft Azure Event Hubs
C. Microsoft Azure IoT Hub
D. Microsoft Azure Service Bus

A

Correct Answer: C

48
Q

You create an Azure Machine Learning Studio experiment.
You plan to publish the experiment as a Machine Learning Web service.
You need to ensure that you can consume the web service from Microsoft Excel spreadsheets.
What should you use?
A. a Batch Execution Service (BES) and an API key
B. a Batch Execution Service (BES) and an Azure managed identity
C. a Request-Response Service (RRS) and an Azure managed identity
D. a Request-Response Service (RRS) and an API key

A

Correct Answer: D

49
Q

You are building an Azure Analysis Services cube for your AI deployment.
The source data for the cube is located in an on premises network in a Microsoft SQL Server database.
You need to ensure that the Azure Analysis Services service can access the source data.
What should you deploy to your Azure subscription?
A. a site-to-site VPN
B. a data gateway
C. Azure Data Factory
D. a network gateway

A

Correct Answer: B

50
Q
A data scientist deploys a deep learning model on an Fsv2 virtual machine.
Data analysis is slow.
You need to recommend which virtual machine series the data scientist must use to ensure that data analysis occurs as quickly as possible.
Which series should you recommend?
A. ND
B. B
C. DC
D. Ev3
A

Correct Answer: A - ND

51
Q

You have Azure IoT Edge devices that generate measurement data from temperature sensors. The data changes very slowly.
You need to analyze the data in a temporal two-minute window. If the temperature rises five degrees above a limit, an alert must be raised. The solution must minimize the development of custom code.
What should you use?
A. A Machine Learning model as a web service
B. an Azure Machine Learning model as an IoT Edge module
C. Azure Stream Analytics as an IoT Edge module
D. Azure Functions as an IoT Edge module

A

Correct Answer: C - Azure Stream Analytics as an IoT Edge module

In par with LinuxAcademy

52
Q

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You are deploying an Azure Machine Learning model to an Azure Kubernetes Service (AKS) container.
You need to monitor the accuracy of each run of the model.
Solution: You modify the scoring file.
Does this meet the goal?
A. Yes
B. No

A

Correct Answer: B

53
Q

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You are deploying an Azure Machine Learning model to an Azure Kubernetes Service (AKS) container.
You need to monitor the accuracy of each run of the model.
Solution: You configure Azure Monitor for containers.
Does this meet the goal?
A. Yes
B. No

A

Correct Answer: B

54
Q

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You are deploying an Azure Machine Learning model to an Azure Kubernetes Service (AKS) container.
You need to monitor the accuracy of each run of the model.
Solution: You configure Azure Application Insights.
Does this meet the goal?
A. Yes
B. No

A

Correct Answer: A

55
Q

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You create several API models in Azure Machine Learning Studio.
You deploy the models to a production environment.
You need to monitor the compute performance of the models.
Solution: You create environment files.
Does this meet the goal?
A. Yes
B. No

A

Correct Answer: B

56
Q

You deploy an Azure bot.
You need to collect Key Performance Indicator (KPI) data from the bot. The type of data includes:
✑ The number of users interacting with the bot
✑ The number of messages interacting with the bot
✑ The number of messages on different channels received by the bot
✑ The number of users and messages continuously interacting with the bot
What should you configure?
A. Bot analytics
B. Azure Monitor
C. Azure Analysis Services
D. Azure Application Insights

A

Correct Answer: A

57
Q

Your company develops an API application that is orchestrated by using Kubernetes.
You need to deploy the application.
Which three actions should you perform? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.
A. Create a Kubernetes cluster.
B. Create an Azure Container Registry instance.
C. Create a container image file.
D. Create a Web App for Containers.
E. Create an Azure container instance.

A

Correct Answer: ABC

In par with LinuxAcademy

58
Q

You have an Azure Machine Learning experiment that must comply with GDPR regulations.
You need to track compliance of the experiment and store documentation about the experiment.
What should you use?
A. Azure Table storage
B. Azure Security Center
C. An Azure Log Analytics workspace
D. Compliance Manager

A

Correct Answer: D

59
Q

You are developing an application that will perform optical character recognition of photos of medical logbooks.
You need to recommend a solution to validate the data against a validated set of records.
Which service should you include in the recommendation?
A. Azure Data Catalog
B. Text Analytics
C. Bing Autosuggest
D. Master Data Services (MDS) in Microsoft SQL Server

A

Correct Answer: D

60
Q

You are designing an AI application that will perform real-time processing by using Microsoft Azure Stream Analytics.
You need to identify the valid outputs of a Stream Analytics job.
What are three possible outputs? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.
A. A Hive table in Azure HDInsight
B. Azure SQL Database
C. Azure Cosmos DB
D. Azure Blob storage
E. Azure Redis Cache

A

Correct Answer: BCD

61
Q

Your company has an Azure subscription that contains an Azure Active Directory (Azure AD) tenant.
Azure AD contains 500 user accounts for your company’s employees. Some temporary employees do NOT have user accounts in Azure AD.
You are designing a storage solution for video files and metadata files.
You plan to deploy an application to perform analysis of the metadata files.
You need to recommend an authentication solution to provide links to the video files. The solution must provide access to each file for only five minutes.
What should you include in the recommendation?

A. Secondary Storage Key
B. Primary Storage Key
C. Shared Access Signature
D. Azure Active Directory

A

Correct Answer: C, Shared Access Signature

62
Q

Your company plans to implement an AI solution that will analyze data from IoT devices.
Data from the devices will be analyzed in real time. The results of the analysis will be stored in a SQL database.
You need to recommend a data processing solution that uses the Transact-SQL language.
Which data processing solution should you recommend?
A. Azure Stream Analytics
B. SQL Server Integration Services (SSIS)
C. Azure Event Hubs
D. Azure Machine Learning

A

Correct Answer: A

63
Q

Introductory Info
Overview -
Contoso, Ltd. has an office in New York to serve its North American customers and an office in Paris to serve its European customers.

Existing Environment -

Infrastructure -
Each office has a small data center that hosts Active Directory services and a few off-the-shelf software solutions used by internal users.
The network contains a single Active Directory forest that contains a single domain named contoso.com. Azure Active Directory (Azure AD) Connect is used to extend identity management to Azure.
The company has an Azure subscription. Each office has an Azure ExpressRoute connection to the subscription. The New York office connects to a virtual network hosted in the US East 2 Azure region. The Paris office connects to a virtual network hosted in the West Europe Azure region.
The New York office has an Azure Stack Development Kit (ASDK) deployment that is used for development and testing.

Current Business Model -
Contoso has a web app named Bookings hosted in an App Service Environment (ASE). The ASE is in the virtual network in the East US 2 region. Contoso employees and customers use Bookings to reserve hotel rooms.

Data Environment -
Bookings connects to a Microsoft SQL Server database named hotelDB in the New York office.
The database has a view named vwAvailability that consolidates columns from the tables named Hotels, Rooms, and RoomAvailability. The database contains data that was collected during the last 20 years.

Problem Statements -
Contoso identifies the following issues with its current business model:
European users report that access to Booking is slow, and they lose customers who must wait on the phone while they search for available rooms.
Users report that Bookings was unavailable during an outage in the New York data center for more than 24 hours.

Requirements -
Contoso identifies the following issues with its current business model:
European users report that access to Bookings is slow, and they lose customers who must wait on the phone while they search for available rooms.
Users report that Bookings was unavailable during on outage in the New York data center for more than 24 hours.

Business Goals -
Contoso wants to provide a new version of the Bookings app that will provide a highly available, reliable service for booking travel packages by interacting with a chatbot named Butler.
Contoso plans to move all production workloads to the cloud.

Technical requirements -
Contoso identifies the following technical requirements:
Data scientists must test Butler by using ASDK.
Whenever possible, solutions must minimize costs.
Butler must greet users by name when they first connect.
Butler must be able to handle up to 10,000 messages a day.
Butler must recognize the users’ intent based on basic utterances.
All configurations to the Azure Bot Service must be logged centrally.
Whenever possible, solutions must use the principle of least privilege.
Internal users must be able to access Butler by using Microsoft Skype for Business.
The new Bookings app must provide a user interface where users can interact with Butler.
Users in an Azure AD group named KeyManagers must be able to manage keys for all Azure Cognitive Services.
Butler must provide users with the ability to reserve a room, cancel a reservation, and view existing reservations.
The new Bookings app must be available to users in North America and Europe if a single data center or Azure region fails.
For continuous improvement, you must be able to test Butler by sending sample utterances and comparing the chatbot’s responses to the actual intent.

Question

You need to recommend a data storage solution that meets the technical requirements. What is the best data storage solution to recommend? More than one answer choice may achieve the goal. Select the BEST answer.

A. Azure Databricks
B. Azure SQL Database
C. Azure Table storage
D. Azure Cosmos DB

A

Correct Answer: B

64
Q

Introductory Info
Overview -
Contoso, Ltd. has an office in New York to serve its North American customers and an office in Paris to serve its European customers.

Existing Environment -

Infrastructure -
Each office has a small data center that hosts Active Directory services and a few off-the-shelf software solutions used by internal users.
The network contains a single Active Directory forest that contains a single domain named contoso.com. Azure Active Directory (Azure AD) Connect is used to extend identity management to Azure.
The company has an Azure subscription. Each office has an Azure ExpressRoute connection to the subscription. The New York office connects to a virtual network hosted in the US East 2 Azure region. The Paris office connects to a virtual network hosted in the West Europe Azure region.
The New York office has an Azure Stack Development Kit (ASDK) deployment that is used for development and testing.

Current Business Model -
Contoso has a web app named Bookings hosted in an App Service Environment (ASE). The ASE is in the virtual network in the East US 2 region. Contoso employees and customers use Bookings to reserve hotel rooms.

Data Environment -
Bookings connects to a Microsoft SQL Server database named hotelDB in the New York office.
The database has a view named vwAvailability that consolidates columns from the tables named Hotels, Rooms, and RoomAvailability. The database contains data that was collected during the last 20 years.

Problem Statements -
Contoso identifies the following issues with its current business model:
European users report that access to Booking is slow, and they lose customers who must wait on the phone while they search for available rooms.
Users report that Bookings was unavailable during an outage in the New York data center for more than 24 hours.

Requirements -
Contoso identifies the following issues with its current business model:
European users report that access to Bookings is slow, and they lose customers who must wait on the phone while they search for available rooms.
Users report that Bookings was unavailable during on outage in the New York data center for more than 24 hours.

Business Goals -
Contoso wants to provide a new version of the Bookings app that will provide a highly available, reliable service for booking travel packages by interacting with a chatbot named Butler.
Contoso plans to move all production workloads to the cloud.

Technical requirements -
Contoso identifies the following technical requirements:
Data scientists must test Butler by using ASDK.
Whenever possible, solutions must minimize costs.
Butler must greet users by name when they first connect.
Butler must be able to handle up to 10,000 messages a day.
Butler must recognize the users’ intent based on basic utterances.
All configurations to the Azure Bot Service must be logged centrally.
Whenever possible, solutions must use the principle of least privilege.
Internal users must be able to access Butler by using Microsoft Skype for Business.
The new Bookings app must provide a user interface where users can interact with Butler.
Users in an Azure AD group named KeyManagers must be able to manage keys for all Azure Cognitive Services.
Butler must provide users with the ability to reserve a room, cancel a reservation, and view existing reservations.
The new Bookings app must be available to users in North America and Europe if a single data center or Azure region fails.
For continuous improvement, you must be able to test Butler by sending sample utterances and comparing the chatbot’s responses to the actual intent.

Question

You need to design the Butler chatbot solution to meet the technical requirements.

What is the best channel and pricing tier to use? More than one answer choice may achieve the goal. Select the BEST answer.

A. Standard channels that use the S1 pricing tier
B. Standard channels that use the Free pricing tier
C. Premium channels that use the Free pricing tier
D. Premium channels that use the S1 pricing tier

A

Correct Answer: D

65
Q

Introductory Info
Overview -
Contoso, Ltd. has an office in New York to serve its North American customers and an office in Paris to serve its European customers.

Existing Environment -

Infrastructure -
Each office has a small data center that hosts Active Directory services and a few off-the-shelf software solutions used by internal users.
The network contains a single Active Directory forest that contains a single domain named contoso.com. Azure Active Directory (Azure AD) Connect is used to extend identity management to Azure.
The company has an Azure subscription. Each office has an Azure ExpressRoute connection to the subscription. The New York office connects to a virtual network hosted in the US East 2 Azure region. The Paris office connects to a virtual network hosted in the West Europe Azure region.
The New York office has an Azure Stack Development Kit (ASDK) deployment that is used for development and testing.

Current Business Model -
Contoso has a web app named Bookings hosted in an App Service Environment (ASE). The ASE is in the virtual network in the East US 2 region. Contoso employees and customers use Bookings to reserve hotel rooms.

Data Environment -
Bookings connects to a Microsoft SQL Server database named hotelDB in the New York office.
The database has a view named vwAvailability that consolidates columns from the tables named Hotels, Rooms, and RoomAvailability. The database contains data that was collected during the last 20 years.

Problem Statements -
Contoso identifies the following issues with its current business model:
European users report that access to Booking is slow, and they lose customers who must wait on the phone while they search for available rooms.
Users report that Bookings was unavailable during an outage in the New York data center for more than 24 hours.

Requirements -
Contoso identifies the following issues with its current business model:
European users report that access to Bookings is slow, and they lose customers who must wait on the phone while they search for available rooms.
Users report that Bookings was unavailable during on outage in the New York data center for more than 24 hours.

Business Goals -
Contoso wants to provide a new version of the Bookings app that will provide a highly available, reliable service for booking travel packages by interacting with a chatbot named Butler.
Contoso plans to move all production workloads to the cloud.

Technical requirements -
Contoso identifies the following technical requirements:
Data scientists must test Butler by using ASDK.
Whenever possible, solutions must minimize costs.
Butler must greet users by name when they first connect.
Butler must be able to handle up to 10,000 messages a day.
Butler must recognize the users’ intent based on basic utterances.
All configurations to the Azure Bot Service must be logged centrally.
Whenever possible, solutions must use the principle of least privilege.
Internal users must be able to access Butler by using Microsoft Skype for Business.
The new Bookings app must provide a user interface where users can interact with Butler.
Users in an Azure AD group named KeyManagers must be able to manage keys for all Azure Cognitive Services.
Butler must provide users with the ability to reserve a room, cancel a reservation, and view existing reservations.
The new Bookings app must be available to users in North America and Europe if a single data center or Azure region fails.
For continuous improvement, you must be able to test Butler by sending sample utterances and comparing the chatbot’s responses to the actual intent.

Question

Which two services should be implemented so that Butler can find available rooms on the technical requirements? Each correct answer presents part of the solution.

NOTE: Each correct selection is worth one point.
A. QnA Maker
B. Bing Entity Search
C. Language Understanding (LUIS)
D. Azure Search
E. Content Moderator
A

Correct Answer: CD

66
Q

Introductory Info
Overview -
Contoso, Ltd. has an office in New York to serve its North American customers and an office in Paris to serve its European customers.

Existing Environment -

Infrastructure -
Each office has a small data center that hosts Active Directory services and a few off-the-shelf software solutions used by internal users.
The network contains a single Active Directory forest that contains a single domain named contoso.com. Azure Active Directory (Azure AD) Connect is used to extend identity management to Azure.
The company has an Azure subscription. Each office has an Azure ExpressRoute connection to the subscription. The New York office connects to a virtual network hosted in the US East 2 Azure region. The Paris office connects to a virtual network hosted in the West Europe Azure region.
The New York office has an Azure Stack Development Kit (ASDK) deployment that is used for development and testing.

Current Business Model -
Contoso has a web app named Bookings hosted in an App Service Environment (ASE). The ASE is in the virtual network in the East US 2 region. Contoso employees and customers use Bookings to reserve hotel rooms.

Data Environment -
Bookings connects to a Microsoft SQL Server database named hotelDB in the New York office.
The database has a view named vwAvailability that consolidates columns from the tables named Hotels, Rooms, and RoomAvailability. The database contains data that was collected during the last 20 years.

Problem Statements -
Contoso identifies the following issues with its current business model:
European users report that access to Booking is slow, and they lose customers who must wait on the phone while they search for available rooms.
Users report that Bookings was unavailable during an outage in the New York data center for more than 24 hours.

Requirements -
Contoso identifies the following issues with its current business model:
European users report that access to Bookings is slow, and they lose customers who must wait on the phone while they search for available rooms.
Users report that Bookings was unavailable during on outage in the New York data center for more than 24 hours.

Business Goals -
Contoso wants to provide a new version of the Bookings app that will provide a highly available, reliable service for booking travel packages by interacting with a chatbot named Butler.
Contoso plans to move all production workloads to the cloud.

Technical requirements -
Contoso identifies the following technical requirements:
Data scientists must test Butler by using ASDK.
Whenever possible, solutions must minimize costs.
Butler must greet users by name when they first connect.
Butler must be able to handle up to 10,000 messages a day.
Butler must recognize the users’ intent based on basic utterances.
All configurations to the Azure Bot Service must be logged centrally.
Whenever possible, solutions must use the principle of least privilege.
Internal users must be able to access Butler by using Microsoft Skype for Business.
The new Bookings app must provide a user interface where users can interact with Butler.
Users in an Azure AD group named KeyManagers must be able to manage keys for all Azure Cognitive Services.
Butler must provide users with the ability to reserve a room, cancel a reservation, and view existing reservations.
The new Bookings app must be available to users in North America and Europe if a single data center or Azure region fails.
For continuous improvement, you must be able to test Butler by sending sample utterances and comparing the chatbot’s responses to the actual intent.

Question

Which RBAC role should you assign to the KeyManagers group?

A. Cognitive Services Contributor
B. Security Manager
C. Cognitive Services User
D. Security Administrator

A

Correct Answer: A - Cognitive Services Contributor

67
Q

Your company is building custom models that integrate into microservices architecture on Azure Kubernetes Services (AKS).
The model is built by using Python and published to AKS.
You need to update the model and enable Azure Application Insights for the model.
What should you use?
A. the Azure CLI
B. MLNET Model Builder
C. the Azure Machine Learning SDK
D. the Azure portal

A

Correct Answer: A

68
Q

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You have an app named App1 that uses the Face API.
App1 contains several PersonGroup objects.
You discover that a PersonGroup object for an individual named Ben Smith cannot accept additional entries. The PersonGroup object for Ben Smith contains
10,000 entries.
You need to ensure that additional entries can be added to the PersonGroup object for Ben Smith. The solution must ensure that Ben Smith can be identified by all the entries.
Solution: You modify the custom time interval for the training phase of App1.
Does this meet the goal?
A. Yes
B. No

A

Correct Answer: B

69
Q

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You have an app named App1 that uses the Face API.
App1 contains several PersonGroup objects.
You discover that a PersonGroup object for an individual named Ben Smith cannot accept additional entries. The PersonGroup object for Ben Smith contains
10,000 entries.
You need to ensure that additional entries can be added to the PersonGroup object for Ben Smith. The solution must ensure that Ben Smith can be identified by all the entries.
Solution: You create a second PersonGroup object for Ben Smith.
Does this meet the goal?
A. Yes
B. No

A

Correct Answer: B

70
Q

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You have an app named App1 that uses the Face API.
App1 contains several PersonGroup objects.
You discover that a PersonGroup object for an individual named Ben Smith cannot accept additional entries. The PersonGroup object for Ben Smith contains
10,000 entries.
You need to ensure that additional entries can be added to the PersonGroup object for Ben Smith. The solution must ensure that Ben Smith can be identified by all the entries.
Solution: You migrate all the entries to the LargePersonGroup object for Ben Smith.
Does this meet the goal?
A. Yes
B. No

A

Correct Answer: A

71
Q

Your company plans to develop a mobile app to provide meeting transcripts by using speech-to-text. Audio from the meetings will be streamed to provide real-time transcription.
You need to recommend which task each meeting participant must perform to ensure that the transcripts of the meetings can identify all participants.
Which task should you recommend?
A. Record the meeting as an MP4.
B. Create a voice signature.
C. Sign up for Azure Speech Services.
D. Sign up as a guest in Azure Active Directory (Azure AD)

A

Correct Answer: B

72
Q

You need to create a prototype of a bot to demonstrate a user performing a task. The demonstration will use the Bot Framework Emulator.
Which botbuilder CLI tool should you use to create the prototype?
A. Chatdown
B. QnAMaker
C. Dispatch
D. LuDown

A

Correct Answer: A

73
Q

You are designing an AI solution that will provide feedback to teachers who train students over the Internet. The students will be in classrooms located in remote areas. The solution will capture video and audio data of the students in the classrooms.
You need to recommend Azure Cognitive Services for the AI solution to meet the following requirements:
✑ Alert teachers if a student facial expression indicates the student is angry or scared.
✑ Identify each student in the classrooms for attendance purposes.
✑ Allow the teachers to log voice conversations as text.
Which Cognitive Services should you recommend?
A. Face API and Text Analytics
B. Computer Vision and Text Analytics
C. QnA Maker and Computer Vision
D. Speech to Text and Face API

A

Correct Answer: D

74
Q

Question #8Topic 9
You need to evaluate trends in fuel prices during a period of 10 years. The solution must identify unusual fluctuations in prices and produce visual representations.
Which Azure Cognitive Services API should you use?
A. Anomaly Detector
B. Computer Vision
C. Text Analytics
D. Bing Autosuggest

A

Correct Answer: A

75
Q

You plan to perform analytics of the medical records of patients located around the world.
You need to recommend a solution that avoids storing and processing data in the cloud.
What should you include in the recommendation?
A. Azure Machine Learning Studio
B. the Text Analytics API that has container support
C. Azure Machine Learning services
D. an Apache Spark cluster that uses MMLSpark

A

Correct Answer: B

76
Q

Your company has an on-premises datacenter.
You plan to publish an app that will recognize a set of individuals by using the Face API. The model is trained.
You need to ensure that all images are processsed in the on-premises datacenter.
What should you deploy to host the Face API?
A. a Docker container
B. Azure File Sync
C. Azure Application Gateway
D. Azure Data Box Edge

A

Correct Answer: A

77
Q

You have a Bing Search service that is used to query a product catalog.
You need to identify the following information:
✑ The locale of the query
✑ The top 50 query strings
✑ The number of calls to the service
✑ The top geographical regions of the service
What should you implement?
A. Bing Statistics
B. Azure API Management (APIM)
C. Azure Monitor
D. Azure Application Insights

A

Correct Answer: A

78
Q

You have a Face API solution that updates in real time. A pilot of the solution runs successfully on a small dataset.
When you attempt to use the solution on a larger dataset that continually changes, the performance degrades, slowing how long it takes to recognize existing faces.
You need to recommend changes to reduce the time it takes to recognize existing faces without increasing costs.
What should you recommend?
A. Change the solution to use the Computer Vision API instead of the Face API.
B. Separate training into an independent pipeline and schedule the pipeline to run daily.
C. Change the solution to use the Bing Image Search API instead of the Face API.
D. Distribute the face recognition inference process across many Azure Cognitive Services instances.

A

Correct Answer: B

79
Q

Introductory Info
Overview -
Contoso, Ltd. has an office in New York to serve its North American customers and an office in Paris to serve its European customers.

Existing Environment -

Infrastructure -
Each office has a small data center that hosts Active Directory services and a few off-the-shelf software solutions used by internal users.
The network contains a single Active Directory forest that contains a single domain named contoso.com. Azure Active Directory (Azure AD) Connect is used to extend identity management to Azure.
The company has an Azure subscription. Each office has an Azure ExpressRoute connection to the subscription. The New York office connects to a virtual network hosted in the US East 2 Azure region. The Paris office connects to a virtual network hosted in the West Europe Azure region.
The New York office has an Azure Stack Development Kit (ASDK) deployment that is used for development and testing.

Current Business Model -
Contoso has a web app named Bookings hosted in an App Service Environment (ASE). The ASE is in the virtual network in the East US 2 region. Contoso employees and customers use Bookings to reserve hotel rooms.

Data Environment -
Bookings connects to a Microsoft SQL Server database named hotelDB in the New York office.
The database has a view named vwAvailability that consolidates columns from the tables named Hotels, Rooms, and RoomAvailability. The database contains data that was collected during the last 20 years.

Problem Statements -
Contoso identifies the following issues with its current business model:
European users report that access to Booking is slow, and they lose customers who must wait on the phone while they search for available rooms.
Users report that Bookings was unavailable during an outage in the New York data center for more than 24 hours.

Requirements -
Contoso identifies the following issues with its current business model:
European users report that access to Bookings is slow, and they lose customers who must wait on the phone while they search for available rooms.
Users report that Bookings was unavailable during on outage in the New York data center for more than 24 hours.

Business Goals -
Contoso wants to provide a new version of the Bookings app that will provide a highly available, reliable service for booking travel packages by interacting with a chatbot named Butler.
Contoso plans to move all production workloads to the cloud.

Technical requirements -
Contoso identifies the following technical requirements:
Data scientists must test Butler by using ASDK.
Whenever possible, solutions must minimize costs.
Butler must greet users by name when they first connect.
Butler must be able to handle up to 10,000 messages a day.
Butler must recognize the users’ intent based on basic utterances.
All configurations to the Azure Bot Service must be logged centrally.
Whenever possible, solutions must use the principle of least privilege.
Internal users must be able to access Butler by using Microsoft Skype for Business.
The new Bookings app must provide a user interface where users can interact with Butler.
Users in an Azure AD group named KeyManagers must be able to manage keys for all Azure Cognitive Services.
Butler must provide users with the ability to reserve a room, cancel a reservation, and view existing reservations.
The new Bookings app must be available to users in North America and Europe if a single data center or Azure region fails.
For continuous improvement, you must be able to test Butler by sending sample utterances and comparing the chatbot’s responses to the actual intent.

Question

You need to meet the testing requirements for the data scientists.
Which three actions should you perform? Each correct answer presents part of the solution.NOTE: Each correct selection is worth one point.

A. Deploy an Azure Kubernetes Service (AKS) cluster to the East US 2 region
B. Get the docker image from mcr.microsoft.com/azure-cognitive-services/sentiment:latest
C. Deploy an Azure an Azure Container Service cluster to the West Europe region
D. Export the production version of the Language Understanding (LUIS) app
E. Deploy a Kubernetes cluster to Azure Stack
F. Get the docker image from mcr.microsoft.com/azure-cognitive-services/luis:latest
G. Export the staging version of the Language and Understanding (LUIS) app

A

Correct Answer: EFG

E. Deploy a Kubernetes cluster to Azure Stack
F. Get the docker image from mcr.microsoft.com/azure-cognitive-services/luis:latest
D. Export the production version of the Language Understanding (LUIS) app

(in par with LinuxAcademy)

80
Q

Introductory Info
Overview -
Contoso, Ltd. has an office in New York to serve its North American customers and an office in Paris to serve its European customers.

Existing Environment -

Infrastructure -
Each office has a small data center that hosts Active Directory services and a few off-the-shelf software solutions used by internal users.
The network contains a single Active Directory forest that contains a single domain named contoso.com. Azure Active Directory (Azure AD) Connect is used to extend identity management to Azure.
The company has an Azure subscription. Each office has an Azure ExpressRoute connection to the subscription. The New York office connects to a virtual network hosted in the US East 2 Azure region. The Paris office connects to a virtual network hosted in the West Europe Azure region.
The New York office has an Azure Stack Development Kit (ASDK) deployment that is used for development and testing.

Current Business Model -
Contoso has a web app named Bookings hosted in an App Service Environment (ASE). The ASE is in the virtual network in the East US 2 region. Contoso employees and customers use Bookings to reserve hotel rooms.

Data Environment -
Bookings connects to a Microsoft SQL Server database named hotelDB in the New York office.
The database has a view named vwAvailability that consolidates columns from the tables named Hotels, Rooms, and RoomAvailability. The database contains data that was collected during the last 20 years.

Problem Statements -
Contoso identifies the following issues with its current business model:
European users report that access to Booking is slow, and they lose customers who must wait on the phone while they search for available rooms.
Users report that Bookings was unavailable during an outage in the New York data center for more than 24 hours.

Requirements -
Contoso identifies the following issues with its current business model:
European users report that access to Bookings is slow, and they lose customers who must wait on the phone while they search for available rooms.
Users report that Bookings was unavailable during on outage in the New York data center for more than 24 hours.

Business Goals -
Contoso wants to provide a new version of the Bookings app that will provide a highly available, reliable service for booking travel packages by interacting with a chatbot named Butler.
Contoso plans to move all production workloads to the cloud.

Technical requirements -
Contoso identifies the following technical requirements:
Data scientists must test Butler by using ASDK.
Whenever possible, solutions must minimize costs.
Butler must greet users by name when they first connect.
Butler must be able to handle up to 10,000 messages a day.
Butler must recognize the users’ intent based on basic utterances.
All configurations to the Azure Bot Service must be logged centrally.
Whenever possible, solutions must use the principle of least privilege.
Internal users must be able to access Butler by using Microsoft Skype for Business.
The new Bookings app must provide a user interface where users can interact with Butler.
Users in an Azure AD group named KeyManagers must be able to manage keys for all Azure Cognitive Services.
Butler must provide users with the ability to reserve a room, cancel a reservation, and view existing reservations.
The new Bookings app must be available to users in North America and Europe if a single data center or Azure region fails.
For continuous improvement, you must be able to test Butler by sending sample utterances and comparing the chatbot’s responses to the actual intent.

Question

You need to meet the greeting requirements for Butler.
Which type of authentication should you use?

A. AdaptiveCard
B. SigninCard
C. CardCarousel
D. HeroCard

A

Correct Answer: D

81
Q

Your company has several AI solutions and bots.
You need to implement a solution to monitor the utilization of the bots. The solution must ensure that analysts at the company can generate dashboards to review the utilization.
What should you include in the solution?
A. Azure Application Insights
B. Azure Data Explorer
C. Azure Logic Apps
D. Azure Monitor

A

Correct Answer: A

82
Q

Your plan to design a bot that will be hosted by using Azure Bot Service.
Your company identifies the following compliance requirements for the bot:
✑ Payment Card Industry Data Security Standards (PCI DSS)
✑ General Data Protection Regulation (GDPR)
✑ ISO 27001
You need to identify which compliance requirements are met by hosting the bot in the bot service.
What should you identify?
A. PCI DSS only
B. PCI DSS, ISO 27001, and GDPR
C. ISO 27001 only
D. GDPR only

A

Correct Answer: B

83
Q

Your company plans to create a mobile app that will be used by employees to query the employee handbook.
You need to ensure that the employees can query the handbook by typing or by using speech.
Which core component should you use for the app?
A. Language Understanding (LUIS)
B. QnA Maker
C. Text Analytics
D. Azure Search

A

Correct Answer: D

84
Q

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You need to create an IoT solution that performs the following tasks:
✑ Identifies hazards
✑ Provides a real-time online dashboard
✑ Takes images of an area every minute
✑ Counts the number of people in an area every minute
Solution: You implement Azure Cognitive Services containers on the IoT devices, and then you configure results to be sent to an Azure IoT hub. You configure
Microsoft Power BI to connect to the IoT hub by using Azure Stream Analytics.
Does this meet the goal?
A. Yes
B. No

A

Correct Answer: A

85
Q

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You need to create an IoT solution that performs the following tasks:
✑ Identifies hazards
✑ Provides a real-time online dashboard
✑ Takes images of an area every minute
✑ Counts the number of people in an area every minute
Solution: You configure the IoT devices to send the images to an Azure IoT hub, and then you configure an Azure Functions call to Azure Cognitive Services that sends the results to an Azure event hub. You configure Microsoft Power BI to connect to the event hub by using Azure Stream Analytics.
Does this meet the goal?
A. Yes
B. No

A

Correct Answer: B

86
Q

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You need to create an IoT solution that performs the following tasks:
✑ Identifies hazards
✑ Provides a real-time online dashboard
✑ Takes images of an area every minute
✑ Counts the number of people in an area every minute
Solution: You configure the IoT devices to send the images to an Azure IoT hub, and then you configure an Azure Automation call to Azure Cognitive Services that sends the results to an Azure event hub. You configure Microsoft Power BI to connect to the event hub by using Azure Stream Analytics.
Does this meet the goal?
A. Yes
B. No

A

Correct Answer: B

87
Q

You plan to deploy Azure IoT Edge devices. Each device will store more than 10,000 images locally. Each image is approximately 5 MB.
You need to ensure that the images persist on the devices for 14 days.
What should you use?
A. Azure Stream Analytics on the IoT Edge devices
B. Azure Database for Postgres SQL
C. Azure Blob storage on the IoT Edge devices
D. Microsoft SQL Server on the IoT Edge devices

A

Correct Answer: C

88
Q

You have an Azure Machine Learning experiment.
You need to validate that the experiment meets GDPR regulation requirements and stores documentation about the experiment.
What should you use?
A. Compliance Manager
B. an Azure Log Analytics workspace
C. Azure Table storage
D. Azure Security Center

A

Correct Answer: A

89
Q

You are designing a solution that will integrate the Bing Web Search API and will return a JSON response. The development team at your company uses C# as its primary development language.
You provide developers with the Bing endpoint.
Which additional component do the developers need to prepare and to retrieve data by using an API call?
A. the subscription ID
B. the API key
C. a query
D. the resource group ID

A

Correct Answer: C

90
Q

You have an app that records meetings by using speech-to-text capabilities from the Speech Services API.
You discover that when action items are listed at the end of each meeting, the app transcribes the text inaccurately.

You need to improve the accuracy of the meeting records.
What should you do?
A. Add a phrase list
B. Create a custom wake word
C. Parse the text by using the Language Understanding (LUIS) API
D. Train a custom model by using Custom Translator

A

Correct Answer: D

91
Q
The development team at your company builds a bot by using C# and .NET.
You need to deploy the bot to Azure.
Which tool should you use?
A. the .NET Core CLI
B. the Azure CLI
C. the Git CLI
D. the AzCopy toll
A

Correct Answer: B

The .NET Core CLI manages .NET core and does not have the ability to deploy LUIS apps to Azure.

92
Q

Your company has several AI solutions and bots.
You need to implement a solution to monitor the utilization of the bots. The solution must ensure that analysts at the company can generate dashboards to review the utilization.
What should you include in the solution?
A. Azure Application Insights
B. Azure Data Explorer
C. Azure Logic Apps
D. Azure Monitor

A

Correct Answer: A

93
Q

Your plan to design a bot that will be hosted by using Azure Bot Service.
Your company identifies the following compliance requirements for the bot:
✑ Payment Card Industry Data Security Standards (PCI DSS)
✑ General Data Protection Regulation (GDPR)
✑ ISO 27001
You need to identify which compliance requirements are met by hosting the bot in the bot service.
What should you identify?
A. PCI DSS only
B. PCI DSS, ISO 27001, and GDPR
C. ISO 27001 only
D. GDPR only

A

Correct Answer: B

94
Q

Your company plans to create a mobile app that will be used by employees to query the employee handbook.
You need to ensure that the employees can query the handbook by typing or by using speech.
Which core component should you use for the app?
A. Language Understanding (LUIS)
B. QnA Maker
C. Text Analytics
D. Azure Search

A

Correct Answer: D

95
Q

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You need to create an IoT solution that performs the following tasks:
✑ Identifies hazards
✑ Provides a real-time online dashboard
✑ Takes images of an area every minute
✑ Counts the number of people in an area every minute
Solution: You implement Azure Cognitive Services containers on the IoT devices, and then you configure results to be sent to an Azure IoT hub. You configure
Microsoft Power BI to connect to the IoT hub by using Azure Stream Analytics.
Does this meet the goal?
A. Yes
B. No

A

Correct Answer: A

96
Q

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You need to create an IoT solution that performs the following tasks:
✑ Identifies hazards
✑ Provides a real-time online dashboard
✑ Takes images of an area every minute
✑ Counts the number of people in an area every minute
Solution: You configure the IoT devices to send the images to an Azure IoT hub, and then you configure an Azure Functions call to Azure Cognitive Services that sends the results to an Azure event hub. You configure Microsoft Power BI to connect to the event hub by using Azure Stream Analytics.
Does this meet the goal?
A. Yes
B. No

A

Correct Answer: B

97
Q

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You need to create an IoT solution that performs the following tasks:
✑ Identifies hazards
✑ Provides a real-time online dashboard
✑ Takes images of an area every minute
✑ Counts the number of people in an area every minute
Solution: You configure the IoT devices to send the images to an Azure IoT hub, and then you configure an Azure Automation call to Azure Cognitive Services that sends the results to an Azure event hub. You configure Microsoft Power BI to connect to the event hub by using Azure Stream Analytics.
Does this meet the goal?
A. Yes
B. No

A

Correct Answer: B

98
Q

You plan to deploy Azure IoT Edge devices. Each device will store more than 10,000 images locally. Each image is approximately 5 MB.
You need to ensure that the images persist on the devices for 14 days.
What should you use?
A. Azure Stream Analytics on the IoT Edge devices
B. Azure Database for Postgres SQL
C. Azure Blob storage on the IoT Edge devices
D. Microsoft SQL Server on the IoT Edge devices

A

Correct Answer: C

99
Q

You have an Azure Machine Learning experiment.
You need to validate that the experiment meets GDPR regulation requirements and stores documentation about the experiment.
What should you use?
A. Compliance Manager
B. an Azure Log Analytics workspace
C. Azure Table storage
D. Azure Security Center

A

Correct Answer: A

100
Q

You are designing a solution that will integrate the Bing Web Search API and will return a JSON response. The development team at your company uses C# as its primary development language.
You provide developers with the Bing endpoint.
Which additional component do the developers need to prepare and to retrieve data by using an API call?
A. the subscription ID
B. the API key
C. a query
D. the resource group ID

A

Correct Answer: C

101
Q

You have an app that records meetings by using speech-to-text capabilities from the Speech Services API.
You discover that when action items are listed at the end of each meeting, the app transcribes the text inaccurately.
You need to improve the accuracy of the meeting records.
What should you do?
A. Add a phrase list
B. Create a custom wake word
C. Parse the text by using the Language Understanding (LUIS) API
D. Train a custom model by using Custom Translator

A

Correct Answer: D

102
Q
The development team at your company builds a bot by using C# and .NET.
You need to deploy the bot to Azure.
Which tool should you use?
A. the .NET Core CLI
B. the Azure CLI
C. the Git CLI
D. the AzCopy toll
A

Correct Answer: B

103
Q

You have an existing Language Understanding (LUIS) model for an internal bot.
You need to recommend a solution to add a meeting reminder functionality to the bot by using a prebuilt model. The solution must minimize the size of the model.
Which component of LUIS should you recommend?
A. domain
B. intents
C. entities

A

Correct Answer: C

104
Q

You have an on-premises repository that contains 5,000 videos. The videos feature demonstrations of the products sold by your company.
The company’s customers plan to search the videos by using the name of the product demonstrated in each video.
You need to build a custom search tool for the customers.
What should you do first?
A. Deploy an Azure Media Services resource.
B. Create an Azure Storage account and a blob container.
C. Create an Azure Search resource.
D. Deploy a Custom Vision API service.

A

Correct Answer: A

105
Q

You are designing a Computer Vision AI application.
You need to recommend a deployment solution for the application. The solution must ensure that costs scale linearly without any upfront costs.
What should you recommend?
A. a containerized Computer Vision API on Azure Container Instances
B. the Computer Vision API as a single resource
C. an Azure Container Service
D. a containerized Computer Vision API on Azure Kubernetes Service (AKS) that has virtual nodes configured

A

Correct Answer: A

106
Q

You are implementing the Language Understanding (LUIS) API and are building a GDPR-compliant bot by using the Bot Framework.
You need to recommend a solution to ensure that the implementation of LUIS is GDPR-compliant.
What should you include in the recommendation?
A. Enable active learning for the bot.
B. Configure the bot to send the active learning preference of a user.
C. Delete the utterances from Review endpoint utterances.

A

Correct Answer: C

107
Q

You need to build a reputation monitoring solution that reviews Twitter activity about your company. The solution must identify negative tweets and tweets that contain inappropriate images.
You plan to use Azure Logic Apps to build the solution.
Which two additional Azure services should you include in the solution? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.
A. Corporate Vision
B. Azure Blueprint
C. Content Moderator
D. Text Analytics
E. Azure Machine Learning Service
F. Form Recognizer

A

Correct Answer: CD

108
Q

Your company uses an internal blog to share news with employees.
You use the Translator Text API to translate the text in the blog from English to several other languages used by the employee.
Several employees report that the translations are often inaccurate.
You need to improve the accuracy of the translations.
What should you add to the translation solution?
A. Text Analytics
B. Language Understanding (LUIS)
C. Azure Media Services
D. Custom Translator

A

Correct Answer: D

109
Q

You plan to develop a bot that tracks communications between the employees at your company.
You need to identify which channel the bot must use to monitor reactions to messages by employees.
What should you identify?
A. Microsoft Cortana
B. Microsoft Outlook
C. Microsoft Teams

A

Correct Answer: C

110
Q

You plan to implement a bot that will require user authentication.
You need to recommend a secure solution that provides encryption for the authentication of the bot.
Which two security solutions should you include in the recommendation? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.
A. NTLM
B. JSON Web Token (JWT)
C. API keys
D. smart cards
E. SSL/TLS

A

Correct Answer: BE

111
Q

You are designing a solution that will use the Azure Content Moderator service to moderate user-generated content.
You need to moderate custom predefined content without repeatedly scanning the collected content.
Which two APIs should you use? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.)
A. Term List API
B. Text Moderation API
C. Image Moderation API
D. Workflow API

A

Correct Answer: AC