Implementing Microsoft Azure Infrastructure Solutions

 
 
 

Skills measured

This exam measures your ability to accomplish the technical tasks listed below. The percentages indicate the relative weight of each major topic area on the exam. The higher the percentage, the more questions you are likely to see on that content area on the exam. View video tutorials about the variety of question types on Microsoft exams.

Please note that the questions may test on, but will not be limited to, the topics described in the bulleted text.

Do you have feedback about the relevance of the skills measured on this exam? Please send Microsoft your comments. All feedback will be reviewed and incorporated as appropriate while still maintaining the validity and reliability of the certification process. Note that Microsoft will not respond directly to your feedback. We appreciate your input in ensuring the quality of the Microsoft Certification program.

If you have concerns about specific questions on this exam, please submit an exam challenge.

If you have other questions or feedback about Microsoft Certification exams or about the certification program, registration, or promotions, please contact 

https://www.testsimulate.com/1Z0-926-study-materials.html

Since the last exam update, Microsoft Azure has had significant technology changes, and we are updating the exam objectives to include them.

To learn more about these new exams and what they assess, visit:

https://www.testsimulate.com/70-533-study-materials.html

More information about exams: 

NEW QUESTION: 1
You are an administrator of the Azure subscription for your company. You are updating an
Azure Resource Manager (ARM) template.
You need to ensure that the JSON file uses the latest version available.
Which template element should you modify?
A. resources
B. variables
C. parameters
D. $schema
Answer: C

NEW QUESTION: 2
You are the administrator for your company's virtual environment. The company plans to
deploy an e-commerce application that will experience random performance fluctuations.
The application must be able to scale to meet temporary needs and be idle when the needs
disappear. You create an automatic virtual machine (VM) scale set to support the application.
You need to set up automatic scaling for the scale set.
Which three tools can you use? Each correct answer presents a complete solution.
A. Azure Command-Line Interface (CLI)
B. Azure Resource Explorer
C. Resource Manager templates
D. Azure Traffic Manager
E. Azure PowerShell
Answer: A,C,E
Explanation
References:
https://docs.microsoft.com/en-us/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-
autoscale-overview

NEW QUESTION: 3
HOTSPOT
You deploy an ASP.NET application to an Azure Cloud Service.
You must collect telemetry data for troubleshooting performance issues and resource usage.
You need to configure Azure diagnostics.
For each requirement, which data source should you specify? To answer, select the appropriate data
source from each list in the answer area.
Answer:
Explanation
References:
https://azure.microsoft.com/en-us/documentation/articles/azure-diagnostics/#cloud-services

NEW QUESTION: 4
You are the administrator for your company's Azure subscription.
Company policy dictates that you must deploy new Azure Resource Manager (ARM) templates using
Azure Command-Line Interface (CLI). Parameters are included in a file called
azuredeploy.parameters.json and do not contain any password information. All JSON files are located
in the root of drive E.
You need to ensure that password parameters are passed to the command.
Which two commands are possible ways to achieve this goal? Each correct answer presents a
complete solution.
A. Run the following CLI command. Add a switch to include password parameters:azure group create
-n "ARMBasic" -l "West US" -f "e:\azuredeploy.json"
B. Add the appropriate password parameters to the azuredeploy.parameters.json file and then run
the following CLI command:azure group create -n "ARMBasic" -l "West US" -f "e:\azuredeploy.json" -
e "e:\azuredeploy.parameters.json"
C. Run the following CLI command. Do not add additional switches:azure group create -n "ARMBasic"
-l "West US" -f "e:\azuredeploy.json" -e "e:\azuredeploy.parameters.json"
D. Run the following CLI command. Add switches to include all parameters:azure group create -n
"ARMBasic" -l "West US" -f "e:\azuredeploy.json"
Answer: C,D

NEW QUESTION: 5
A company uses Azure Resource Manager (ARM) templates to deploy virtual machines (VMs).
You plan to include the following JSON segment in the ARM template.
You need to provide monitoring and diagnostics capabilities for the VM.
Which additional parameter should you include in the template?
A. instanceCount
B. existingdiagnosticsStorageAccountName
C. condition
D. instanceSize
Answer: B
Explanation
The diagnostics extension json snippet above assumes two parameters
existingdiagnosticsStorageAccountName and existingdiagnosticsStorageResourceGroup to specify the
diagnostics storage account where diagnostics data is stored. Specifying the diagnostics storage
account as a parameter makes it easy to change the diagnostics storage account across different
environments, for example you may want to use a different diagnostics storage account for testing
and a different one for your production deployment.
References:
https://docs.microsoft.com/en-us/azure/virtual-machines/windows/extensions-diagnostics-template

NEW QUESTION: 6
Your company network has two physical locations configured in a geo-clustered environment.
You create a Blob storage account in Azure that contains all the data associated with your company.
You need to ensure that the data remains available in the event of a site outage.
Which storage option should you enable?
A. Geo-redundant storage
B. Zone-redundant storage
C. Read-only geo-redundant storage
D. Locally redundant storage
Answer: C
Explanation
Introducing Read-only Access to Geo Redundant Storage (RA-GRS):
RA-GRS allows you to have higher read availability for your storage account by providing "read only"
access to the data replicated to the secondary location. Once you enable this feature, the secondary
location may be used to achieve higher availability in the event the data is not available in the
primary region. This is an
"opt-in" feature which requires the storage account be geo-replicated.
References: https://msdn.microsoft.com/en-us/library/azure/dn727290.aspx

NEW QUESTION: 7
You plan to deploy an Azure SQL Database instance.
After deployment, the solution must meet the following requirements:
- You must be able to restore the database to any point in time for the last 30 days.
- In the event of a restore, data must be recovered by using the fastest available method.
- SQL backups must be stored in up four secondary regions.
- You must minimize costs when configuring the databases.
You need to configure the secondary databases.
Which storage tier and method should you use? To answer, select the appropriate options in the
answer area.
NOTE: Each correct selection is worth one point.
Answer:
Explanation

NEW QUESTION: 8
A company has a hybrid environment. The public IP Address of the on-premises environment
is 40.84.199.233.
The company deploys virtual machines to azure on different subnets.
You need to ensure that the azure VMs can communicate with the on-premises environment.
What should you create?
A. A user defined route to 0.0.0.0/30 with a vpn gateway
B. A border gateway protocol route by using expressroute
C. An internet rule for each subnet
D. A user defined route to 255.255.255.0/0 with a vpn gateway
Answer: A

NEW QUESTION: 9
You deploy an Azure Web App named ContosoApp. ContosoApp runs on five instances.
You need to run an application named App1.exe automatically as a background process for
ContosoApp. The solution must ensure that App1.exe runs in one instance only.
How should you deploy App1.exe?
A. as a virtual application
B. as a native application
C. as a new Web App
D. as a scheduled web job
Answer: D
Explanation
WebJobs is a feature of Azure App Service that enables you to run a program or script in the same
context as a web app, API app, or mobile app. There is no additional cost to use WebJobs.
You can schedule WebJobs.
References:
https://docs.microsoft.com/en-us/azure/app-service-web/web-sites-create-web-
jobs#CreateScheduled

NEW QUESTION: 10
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 plan to enable access to a blob storage account for external clients. The access method must
include an expiration time and clients should not be able to access other storage services.
You need to provide access to the storage account.
Solution: You create a storage account shared access signature.
A. Yes
B. No
Answer: A

NEW QUESTION: 11
You are implementing Azure Role-Based Control (RBAC).
You need to create two new administrator accounts. The accounts must meet the following
requirements:
* Admin1 must be able to manage only the storage accounts that are used by virtual machines (VMs)
and other resources.
* Admin2 must be able to manage and delete resources in the Recovery Services vault.
Which role should you assign to each account? To answer, select the appropriate options in the
answer area.
NOTE: Each correct selection is worth one point.
Answer:
Explanation
Box 1: Storage Account Contributor
A Storage Account Contributor can manage storage accounts, but not access to them.

NEW QUESTION: 12
You are designing an Azure Web App that will use one worker role. The Web App does not
use SQL Database.
You have the following requirements:
*Maximize throughput and system resource availability
*Minimize downtime during scaling
You need to recommend an approach for scaling the application.
Which approach should you recommend?
A. Increase the role instance size.
B. Set up horizontal partitioning.
C. Increase the number of role instances.
D. Set up vertical partitioning.
Answer: C
Explanation
On the Scale page of the Azure Management Portal, you can manually scale your application or you
can set parameters to automatically scale it. You can scale applications that are running Web Roles,
Worker Roles, or Virtual Machines. To scale an application that is running instances of Web Roles or
Worker Roles, you add or remove role instances to accommodate the work load.
References:
http://azure.microsoft.com/en-gb/documentation/articles/cloud-services-how-to-scale/

NEW QUESTION: 13
A company has virtual machines (VMs) that run in Azure. They plan to use Desired Stale
Configuration (DSC) to manage the VM setting.
You need to programmatically prepare the VM 10 use DSC.
Which Azure PowerShell cmdlet should you run?
A. Set-AzureVMscExtention
B. Set-AzureVMSupportExtention
C. Set-AzureVMExtantion
D. Set-AzureVMcustomScripExtentiom
Answer: A

NEW QUESTION: 14
What two VMware Remote Console Options can be defined in the virtual machine settings?
(Choose two.)
A. Boot Delay
B. Total video memory
C. Maximum number of sessions
D. Guest OS lock
Answer: C,D

NEW QUESTION: 15
You design an Azure application that processes images. The maximum size of an image is 10
MB. The application includes a web role that allows users to upload images and a worker role with
multiple instances that processes the images. The web role communicates with the worker role by
using an Azure Queue service.
You need to recommend an approach for storing images that minimizes storage transactions.
What should you recommend?
A. Store images in the queue.
B. Store images in OneDrive attached to the worker role instances. Store references to the images in
the queue.
C. Store images in Azure Blob service. Store references to the images in the queue.
D. Store images in local storage on the web role instance. Store references to the images in the
queue.
Answer: C
Explanation
Azure Queues provide a uniform and consistent programming model across queues, tables, and
BLOBs - both for developers and for operations teams.
Microsoft Azure blob storage can be used to store the image data, the application can use a worker
role in Azure to perform background processing tasks on the images, how the application may use
shared access signatures to control access to the images by users.
Azure blobs provide a series of containers aimed at storing text or binary data. Block blob containers
are ideal for streaming data, while page blob containers can be used for random read/write
operations.
References: https://msdn.microsoft.com/en-gb/library/ff803365.aspx
https://msdn.microsoft.com/en-us/library/azure/hh767287.aspx

NEW QUESTION: 16
You administer an Azure virtual network named fabrikamVNet.
You need to deploy a virtual machine (VM) and ensure that it is a member of the fabrikamVNet
virtual network. Which two actions will achieve the goal? Each correct answer presents a complete
solution.
A. Update fabrikamVNet's existing Availability Set.
B. Run the following Windows PowerShell cmdlet: New-AzureVM
C. Run the following Windows PowerShell cmdlet: New-AzureQuickVM
D. Run the following Windows PowerShell cmdlet: New-AzureAffinityGroup
Answer: B,C

NEW QUESTION: 17
A company has deployed web apps by using by using Azure Active Directory (Azure AD)
Application proxy.
The company plans to enable multi-factor authentication for the web apps. All users have Microsoft
Exchange Online email accounts using Office 365.
You need to ensure that users in Azure AD and on-premises Active Directory Domain Services (AD DS)
can authenticate with the web apps.
Solution: You deploy Office 365 Multi-Factor Authentication for Exchange Online.
Does the solution meet the goal?
A. Yes
B. No
Answer: B

NEW QUESTION: 18
You are an administrator of an Azure subscription for your company.
Management asks you to configure Azure permissions for a user in your Azure Active Directory (Azure
AD).
The user must be able to perform all actions on the virtual machines (VMs). The user must not be
allowed to create and manage availability sets for the Vms.
You need to implement the required permissions with the least administrative effort.
How should you assign permissions?
A. Use Windows PowerShell to create a custom role from the Virtual Machine Contributor role and
then use NotActions to customize the role permissions.
B. Implement a custom role through the Azure Portal and customize the role by adding the
appropriate permissions.
C. Assign the Virtual Machine Contributor role to the user.
D. Use Windows PowerShell to assign the Classic Virtual Machine Contributor role to the user.
Answer: D
Explanation
References:

https://www.testsimulate.com/70-533-study-materials.html