81-100 Flashcards

81-100

1
Q

QUESTION 81

DRAG DROP

Match the Azure service to the correct description.

Instructions: To answer, drag the appropriate Azure service from the column on the left to its description on the right. Each service may be used once, more than once, or not at all.

NOTE: Each correct selection is worth one point.

Select and Place:

A

Section: Describe core solutions and management tools on Azure Explanation

Explanation/Reference:

Explanation:

Box 1:

Azure Bot Services provides a digital online assistant that provides speech support.

Bots provide an experience that feels less like using a computer and more like dealing with a person - or at least an intelligent robot. They can be used to shift simple, repetitive tasks, such as taking a dinner reservation or gathering profile information, on to automated systems that may no longer require direct human intervention. Users converse with a bot using text, interactive cards, and speech. A bot interaction can be a quick question and answer, or it can be a sophisticated conversation that intelligently provides access to services.

Box 2:

Azure Machine Learning uses past trainings to provide predictions that have high probability.

Machine learning is a data science technique that allows computers to use existing data to forecast future behaviors, outcomes, and trends. By using machine learning, computers learn without being explicitly programmed.

Forecasts or predictions from machine learning can make apps and devices smarter. For example, when you shop online, machine learning helps recommend other products you might want based on what you’ve bought.

Box 3:

Azure Functions provides serverless computing functionalities.

Azure Functions is a serverless compute service that lets you run event-triggered code without having to explicitly provision or manage infrastructure.

Box 4:

IoT Hub (Internet of things Hub) provides data from millions of sensors.

IoT Hub is a managed service, hosted in the cloud, that acts as a central message hub for bi-directional communication between your IoT application and the devices it manages. You can use Azure IoT Hub to build IoT solutions with reliable and secure communications between millions of IoT devices and a cloud-hosted solution backend. You can connect virtually any device to IoT Hub.

References:

https://docs.microsoft.com/en-us/azure/bot-service/bot-service-overview-introduction?view=azure-bot-service-__4.0

https://docs.microsoft.com/en-us/azure/machine-learning/overview-what-is-azure-ml

https://docs.microsoft.com/en-us/azure/azure-functions/

https://docs.microsoft.com/en-us/azure/iot-hub/about-iot-hub

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

QUESTION 82

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 in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.

An Azure administrator plans to run a PowerShell script that creates Azure resources. You need to recommend which computer configuration to use to run the script.

Solution: Run the script from a computer that runs Windows 10 and has the Azure PowerShell module installed.

Does this meet the goal?

  1. Yes
  2. No
A

Correct Answer: A

Section: Describe core solutions and management tools on Azure Explanation

Explanation/Reference:

Explanation:

A PowerShell script is a file that contains PowerShell cmdlets and code. A PowerShell script needs to be run in PowerShell.

In this question, the computer has the Azure PowerShell module installed. Therefore, this solution does meet the goal.

References:

https://docs.microsoft.com/en-us/powershell/scripting/components/ise/how-to-write-and-run-scripts-in-the- windows-powershell-ise?view=powershell-6

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

QUESTION 83

DRAG DROP

Match the Azure service to the correct description.

Instructions: To answer, drag the appropriate Azure service from the column on the left to its description on the right. Each service may be used once, more than once, or not at all.

NOTE: Each correct selection is worth one point.

Select and Place:

A

Section: Describe core solutions and management tools on Azure Explanation

Explanation/Reference:

Explanation:

Box 1:

Azure virtual machines provide operation system virtualization.

Azure Virtual Machines (VM) is one of several types of on-demand, scalable computing resources that Azure offers. Typically, you choose a VM when you need more control over the computing environment than the other choices offer.

Box 2:

Azure Container Instances provide portable environments for virtualized applications.

Containers are becoming the preferred way to package, deploy, and manage cloud applications. Azure Container Instances offers the fastest and simplest way to run a container in Azure, without having to manage any virtual machines and without having to adopt a higher-level service.

Containers offer significant startup benefits over virtual machines (VMs). Azure Container Instances can start containers in Azure in seconds, without the need to provision and manage VMs.

Box 3:

Azure App Service is used to build, deploy and scale web apps.

Azure App Service is a platform-as-a-service (PaaS) offering that lets you create web and mobile apps for any platform or device and connect to data anywhere, in the cloud or on-premises. App Service includes the web and mobile capabilities that were previously delivered separately as Azure Websites and Azure Mobile Services.

Box 4:

Azure Functions provide a platform for serverless code.

Azure Functions is a serverless compute service that lets you run event-triggered code without having to explicitly provision or manage infrastructure.

References:

https://docs.microsoft.com/en-us/azure/virtual-machines/windows/overview

https://docs.microsoft.com/en-us/azure/security/fundamentals/paas-applications-using-app-services

https://docs.microsoft.com/en-us/azure/azure-functions/

https://docs.microsoft.com/en-us/azure/container-instances/container-instances-overview

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

QUESTION 84

Which service provides serverless computing in Azure?

  1. Azure Virtual Machines
  2. Azure Functions
  3. Azure storage account
  4. Azure Container Instances
A

Correct Answer: B

Section: Describe core solutions and management tools on Azure Explanation

Explanation/Reference:

Explanation:

Azure Functions provide a platform for serverless code.

Azure Functions is a serverless compute service that lets you run event-triggered code without having to explicitly provision or manage infrastructure.

References:

https://docs.microsoft.com/en-us/azure/azure-functions/

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

QUESTION 85

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 in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.

You have an Azure subscription named Subscription1. You sign in to the Azure portal and create a resource group named RG1.

From Azure documentation, you have the following command that creates a virtual machine named VM1.

az vm create –resource-group RG1 –name VM1 –image UbuntuLTS –generate-ssh- keys

You need to create VM1 in Subscription1 by using the command.

Solution: From the Azure portal, launch Azure Cloud Shell and select Bash. Run the command in Cloud Shell. Does this meet the goal?

  1. Yes
  2. No
A

Correct Answer: A

Section: Describe core solutions and management tools on Azure Explanation

Explanation/Reference:

Explanation:

The command can be run in the Azure Cloud Shell.

The Azure Cloud Shell is a free interactive shell. It has common Azure tools preinstalled and configured to use with your account.

To open the Cloud Shell, just select Try it from the upper right corner of a code block. You can also launch Cloud Shell in a separate browser tab by going to https://shell.azure.com/bash.

References:

https://docs.microsoft.com/en-us/azure/virtual-machines/linux/quick-create-cli

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

QUESTION 86

Your company has several business units.

Each business unit requires 20 different Azure resources for daily operation. All the business units require the same type of Azure resources.

You need to recommend a solution to automate the creation of the Azure resources. What should you include in the recommendations?

  1. Azure Resource Manager templates
  2. virtual machine scale sets
  3. the Azure API Management service
  4. management groups
A

Correct Answer: A

Section: Describe core solutions and management tools on Azure Explanation

Explanation/Reference:

Explanation:

You can use Azure Resource Manager templates to automate the creation of the Azure resources. Deploying resource through templates is known as ‘Infrastructure as code’.

To implement infrastructure as code for your Azure solutions, use Azure Resource Manager templates. The template is a JavaScript Object Notation (JSON) file that defines the infrastructure and configuration for your project. The template uses declarative syntax, which lets you state what you intend to deploy without having to write the sequence of programming commands to create it. In the template, you specify the resources to deploy and the properties for those resources.

References:

https://docs.microsoft.com/en-us/azure/azure-resource-manager/templates/overview

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

QUESTION 87

DRAG DROP

Match the Azure service to the correct definition.

Instructions: To answer, drag the appropriate Azure service from the column on the left to its description on the right. Each service may be used once, more than once, or not at all.

NOTE: Each correct selection is worth one point.

Select and Place:

A

Section: Describe core solutions and management tools on Azure Explanation

Explanation/Reference:

Explanation:

Box 1:

Azure Functions provides the platform for serverless code.

Azure Functions is a serverless compute service that lets you run event-triggered code without having to explicitly provision or manage infrastructure.

Box 2:

Azure Databricks is a big analysis service for machine learning.

Azure Databricks is an Apache Spark-based analytics platform. The platform consists of several components including ‘MLib’. Mlib is a Machine Learning library consisting of common learning algorithms and utilities, including classification, regression, clustering, collaborative filtering, dimensionality reduction, as well as underlying optimization primitives.

Box 3:

Azure Application Insights detects and diagnoses anomalies in web apps.

Application Insights, a feature of Azure Monitor, is an extensible Application Performance Management (APM) service for developers and DevOps professionals. Use it to monitor your live applications. It will automatically detect performance anomalies, and includes powerful analytics tools to help you diagnose issues and to understand what users actually do with your app.

Box 4:

Azure App Service hosts web apps.

Azure App Service is an HTTP-based service for hosting web applications, REST APIs, and mobile back ends. You can develop in your favorite language, be it .NET, .NET Core, Java, Ruby, Node.js, PHP, or Python.

Applications run and scale with ease on both Windows and Linux-based environments.

References:

https://docs.microsoft.com/en-us/azure/azure-functions/

https://docs.microsoft.com/en-us/azure/azure-databricks/what-is-azure-databricks#apache-spark-based-__analytics-platform

https://docs.microsoft.com/en-us/azure/azure-monitor/app/app-insights-overview

https://docs.microsoft.com/en-us/azure/app-service/overview

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

QUESTION 88

A team of developers at your company plans to deploy, and then remove, 50 customized virtual machines each week. Thirty of the virtual machines run Windows Server 2016 and 20 of the virtual machines run Ubuntu Linux.

You need to recommend which Azure service will minimize the administrative effort required to deploy and remove the virtual machines.

What should you recommend?

  1. Azure Reserved Virtual Machines (VM) Instances
  2. Azure virtual machine scale sets
  3. Azure DevTest Labs
  4. Microsoft Managed Desktop
A

Correct Answer: C

Section: Describe core solutions and management tools on Azure Explanation

Explanation/Reference:

Explanation:

DevTest Labs creates labs consisting of pre-configured bases or Azure Resource Manager templates. By using DevTest Labs, you can test the latest versions of your applications by doing the following tasks:

Quickly provision Windows and Linux environments by using reusable templates and artifacts. Easily integrate your deployment pipeline with DevTest Labs to provision on-demand environments.

Scale up your load testing by provisioning multiple test agents and create pre-provisioned environments for training and demos.

Reference:

https://docs.microsoft.com/en-us/azure/lab-services/devtest-lab-overview

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

QUESTION 89

A support engineer plans to perform several Azure management tasks by using the Azure CLI. You install the CLI on a computer.

You need to tell the support engineer which tools to use to run the CLI.

Which two tools should you instruct the support engineer to use? Each correct answer presents a complete solution.

NOTE: Each correct selection is worth one point.

  1. Command Prompt
  2. Azure Resource Explorer
  3. Windows PowerShell
  4. Windows Defender Firewall
  5. Network and Sharing Center
A

Correct Answer: AC

Section: Describe core solutions and management tools on Azure Explanation

Explanation/Reference:

Explanation:

For Windows the Azure CLI is installed via an MSI, which gives you access to the CLI through the Windows Command Prompt (CMD) or PowerShell.

References:

https://docs.microsoft.com/en-us/cli/azure/install-azure-cli-windows?view=azure-cli-latest

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

QUESTION 90

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 in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.

You have an Azure environment. You need to create a new Azure virtual machine from a tablet that runs the Android operating system.

Solution: You use PowerShell in Azure Cloud Shell. Does this meet the goal?

  1. Yes
  2. No
A

Correct Answer: A

Section: Describe core solutions and management tools on Azure Explanation

Explanation/Reference:

Explanation:

Azure Cloud Shell is a browser-based shell experience to manage and develop Azure resources.

Cloud Shell offers a browser-accessible, pre-configured shell experience for managing Azure resources without the overhead of installing, versioning, and maintaining a machine yourself.

Being browser-based, Azure Cloud Shell can be run on a browser from a tablet that runs the Android operating system.

References:

https://docs.microsoft.com/en-us/azure/cloud-shell/features

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

QUESTION 91

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 in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.

You have an Azure environment. You need to create a new Azure virtual machine from a tablet that runs the Android operating system.

Solution: You use the PowerApps portal. Does this meet the goal?

  1. Yes
  2. No
A

Correct Answer: B

Section: Describe core solutions and management tools on Azure Explanation

Explanation/Reference:

Explanation:

PowerApps lets you quickly build business applications with little or no code. It is not used to create Azure virtual machines. Therefore, this solution does not meet the goal.

PowerApps Portals allow organizations to create websites which can be shared with users external to their organization either anonymously or through the login provider of their choice like LinkedIn, Microsoft Account, other commercial login providers.

References:

https://powerapps.microsoft.com/en-us/blog/introducing-powerapps-portals-powerful-low-code-websites-for-__external-users/

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

QUESTION 92

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 in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.

You have an Azure environment. You need to create a new Azure virtual machine from a tablet that runs the Android operating system.

Solution: You use the Azure portal. Does this meet the goal?

  1. Yes
  2. No
A

Correct Answer: A

Section: Describe core solutions and management tools on Azure Explanation

Explanation/Reference:

Explanation:

The Azure portal is a web-based, unified console that provides an alternative to command-line tools. With the Azure portal, you can manage your Azure subscription using a graphical user interface. You can build, manage, and monitor everything from simple web apps to complex cloud deployments. Create custom dashboards for an organized view of resources. Configure accessibility options for an optimal experience.

Being web-based, the Azure portal can be run on a browser from a tablet that runs the Android operating system.

References:

https://docs.microsoft.com/en-us/azure/azure-portal/azure-portal-overview

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

QUESTION 93

This question requires that you evaluate the underlined text to determine if it is correct.

Azure Databricks is an Apache Spark-based analytics service.

Instructions: Review the underlined text. If it makes the statement correct, select “No change is needed.” If the statement is incorrect, select the answer choice that makes the statement correct.

  1. No change is needed.
  2. Azure Data Factory
  3. Azure DevOps
  4. Azure HDInsight
A

Correct Answer: A

Section: Describe core solutions and management tools on Azure Explanation

Explanation/Reference:

Explanation:

Azure Databricks is an Apache Spark-based analytics platform. The platform consists of several components including ‘MLib’. Mlib is a Machine Learning library consisting of common learning algorithms and utilities, including classification, regression, clustering, collaborative filtering, dimensionality reduction, as well as underlying optimization primitives.

References:

https://docs.microsoft.com/en-us/azure/azure-databricks/what-is-azure-databricks#apache-spark-based-__analytics-platform

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

QUESTION 94

HOTSPOT

For each of the following statements, select Yes if the statement is true. Otherwise, select No.

NOTE: Each correct selection is worth one point.

Hot Area:

A

Section: Describe core solutions and management tools on Azure Explanation

Explanation/Reference:

Explanation:

Box 1: Yes

Azure Monitor maximizes the availability and performance of your applications and services by delivering a comprehensive solution for collecting, analyzing, and acting on telemetry from your cloud and on-premises environments.

Box 2: Yes

Alerts in Azure Monitor proactively notify you of critical conditions and potentially attempt to take corrective action.

Box 3: Yes

Azure Monitor uses Target Resource, which is the scope and signals available for alerting. A target can be any Azure resource. Example targets: a virtual machine, a storage account, a virtual machine scale set, a Log Analytics workspace, or an Application Insights resource.

References:

https://docs.microsoft.com/en-us/azure/azure-monitor/overview

https://docs.microsoft.com/en-us/azure/azure-monitor/platform/alerts-overview

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

QUESTION 95

Which Azure service provides a set of version control tools to manage code?

  1. Azure Repos
  2. Azure DevTest Labs
  3. Azure Storage
  4. Azure Cosmos DB
A

Correct Answer: A

Section: Describe core solutions and management tools on Azure Explanation

Explanation/Reference:

Explanation:

Azure Repos is a set of version control tools that you can use to manage your code.

Incorrect Answers:

B: Azure DevTest Labs creates labs consisting of pre-configured bases or Azure Resource Manager templates. These have all the necessary tools and software that you can use to create environments.

D: Azure Cosmos DB is Microsoft’s globally distributed, multi-model database service. References:

https://docs.microsoft.com/en-us/azure/devops/repos/get-started/what-is-repos?view=azure-devop

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

QUESTION 96

HOTSPOT

You need to manage Azure by using Azure Cloud Shell.

Which Azure portal icon should you select? To answer, select the appropriate icon in the answer area.

Hot Area:

A

Section: Describe core solutions and management tools on Azure Explanation

Explanation/Reference:

Explanation:

You can access Azure Cloud Shell in the Azure portal by clicking the icon.

Azure Cloud Shell is an interactive, authenticated, browser-accessible shell for managing Azure resources. It provides the flexibility of choosing the shell experience that best suits the way you work, either Bash or PowerShell.

Cloud Shell enables access to a browser-based command-line experience built with Azure management tasks in mind.

References:

https://docs.microsoft.com/en-us/azure/cloud-shell/overview?view=azure-cli-latest

17
Q

QUESTION 97

You have a virtual machine named VM1 that runs Windows Server 2016. VM1 is in the East US Azure region.

Which Azure service should you use from the Azure portal to view service failure notifications that can affect the availability of VM1?

  1. Azure Service Fabric
  2. Azure Monitor
  3. Azure virtual machines
  4. Azure Advisor
A

Correct Answer: C

Section: Describe core solutions and management tools on Azure Explanation

Explanation/Reference:

Explanation:

In the Azure virtual machines page in the Azure portal, there is a named Maintenance Status. This column will display service issues that could affect your virtual machine. A service failure is rare but host server maintenance that could affect your virtual machines is more common.

Azure periodically updates its platform to improve the reliability, performance, and security of the host infrastructure for virtual machines. The purpose of these updates ranges from patching software components in the hosting environment to upgrading networking components or decommissioning hardware.

References:

https://docs.microsoft.com/en-us/azure/virtual-machines/maintenance-and-updates

18
Q

QUESTION 98

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 in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.

An Azure administrator plans to run a PowerShell script that creates Azure resources. You need to recommend which computer configuration to use to run the script.

Solution: Run the script from a computer that runs Linux and has the Azure CLI tools installed. Does this meet the goal?

  1. Yes
  2. No
A

Correct Answer: B

Section: Describe core solutions and management tools on Azure Explanation

Explanation/Reference:

Explanation:

A PowerShell script is a file that contains PowerShell cmdlets and code. A PowerShell script needs to be run in PowerShell.

PowerShell can now be installed on Linux. However, the question states that the computer has Azure CLI tools, not PowerShell installed. Therefore, this solution does not meet the goal.

References:

https://docs.microsoft.com/en-us/powershell/scripting/components/ise/how-to-write-and-run-scripts-in-the-

windows-powershell-ise?view=powershell-6

19
Q

QUESTION 99

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 in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.

An Azure administrator plans to run a PowerShell script that creates Azure resources. You need to recommend which computer configuration to use to run the script.

Solution: Run the script from a computer that runs Chrome OS and uses Azure Cloud Shell. Does this meet the goal?

  1. Yes
  2. No
A

Correct Answer: A

Section: Describe core solutions and management tools on Azure Explanation

Explanation/Reference:

Explanation:

A PowerShell script is a file that contains PowerShell cmdlets and code. A PowerShell script needs to be run in PowerShell.

With the Azure Cloud Shell, you can run PowerShell cmdlets and scripts in a Web browser. You log in to the Azure Portal and select the Azure Cloud Shell option. This will open a PowerShell session in the Web browser. The Azure Cloud Shell has the necessary Azure PowerShell module installed.

Note: to run a PowerShell script in the Azure Cloud Shell, you need to change to the directory where the PowerShell script is stored.

References:

https://docs.microsoft.com/en-us/azure/cloud-shell/quickstart-powershell

20
Q

QUESTION 100
HOTSPOT
For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.
Hot Area:

A

Section: Describe core solutions and management tools on Azure
Explanation
Explanation/Reference:
Explanation:
Box 1: Yes
Azure Service Health consists of three components: Azure Status, Azure Service Heath and Azure Resource
Health.
Azure service health provides a personalized view of the health of the Azure services and regions you’re using.
This is the best place to look for service impacting communications about outages, planned maintenance
activities, and other health advisories because the authenticated Azure Service Health experience knows which
services and resources you currently use.
To view the health of all other services available in Azure, you would use the Azure Status component of Azure
Service Health. Azure status informs you of service outages in Azure on the Azure Status page. The page is a
global view of the health of all Azure services across all Azure regions.
Box 2: Yes
The best way to use Service Health is to set up Service Health alerts to notify you via your preferred
communication channels when service issues, planned maintenance, or other changes may affect the Azure
services and regions you use.
Box 3: No
You can use Resource Health to view the health of a virtual machine. However, you cannot use Resource
Health to prevent a service failure affecting the virtual machine.
Azure resource health provides information about the health of your individual cloud resources such as a
specific virtual machine instance.
References:
https://docs.microsoft.com/en-us/azure/service-health/overview