Question 6 of 246
You manage a cloud service that supports features hosted by two instances of an Azure virtual machine (VM).
You discover that occasional outages cause your service to fail.
You need to minimize the impact of outages to your cloud service.
Which two actions should you perform? Each correct answer presents part of the solution.
    Correct Answer: B, D

Question 7 of 246
You administer an Azure subscription with an existing cloud service named contosocloudservice. Contosocloudservice contains a set of related virtual machines
(VMs) named ContosoDC, ContosoSQL and ContosoWeb1.
You want to provision a new VM within contosocloudservice.
You need to use the latest gallery image to create a new Windows Server 2012 R2 VM that has a target IOPS of 500 for any provisioned disks.
Which PowerShell command should you use?
Exam 70-533: Question 7 - Image 1

    Correct Answer: D
    The New-AzureQuickVM cmdlet sets the configuration for a new virtual machine and creates the virtual machine. You can create a new Azure service for the virtual machine by specifying either the Location or AffinityGroup parameters, or deploy the new virtual machine into an existing service.
    AdminUsername is not required.
    Exam 70-533: Question 7 - Image 2

    References:
    https://msdn.microsoft.com/en-us/library/azure/dn495183.aspx D
Question 8 of 246
DRAG DROP -
You administer an Azure Virtual Machine (VM) named server1. The VM is in a cloud service named ContosoService1.
You discover that the VM is experiencing storage issues due to increased application logging on the server.
You need to create a new 256-GB disk and attach it to the server.
Which Power Shell cmdlets should you use? To answer, drag the appropriate cmdlet to the correct location in the Power Shell command. Each cmdlet may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.
Select and Place:
Exam 70-533: Question 8 - Image 1
    Correct Answer:
    This example gets a virtual machine object for the virtual machine named "MyVM" in the "myservice" cloud service, updates the virtual machine object by attaching an existing data disk from the repository using the disk name, and then updates the Azure virtual machine.

    Windows PowerShell -
    C:\PS>Get-AzureVM "myservice" -Name "MyVM" `| Add-AzureDataDisk -Import -DiskName "MyExistingDisk" -LUN 0 `| Update-AzureVM
    References:
    http://msdn.microsoft.com/en-us/library/dn495298.aspx Exam 70-533: Question 8 - Image 2
Question 9 of 246
Your company has two cloud services named CS01 and CS02. You create a virtual machine (VM) in CS02 named Accounts.
You need to ensure that users in CS01 can access the Accounts VM by using port 8080.
What should you do?
    Correct Answer: E

Question 10 of 246
You administer a solution deployed to a virtual machine (VM) in Azure. The VM hosts a web service that is used by several applications. You are located in the US
West region and have a worldwide user base.
Developers in Asia report that they experience significant delays when they execute the services.
You need to verify application performance from different locations.
Which type of monitoring should you configure?
    Correct Answer: B
    Exam 70-533: Question 10 - Image 1
    The question states: "You need to verify application performance from different locations". The question is not asking you to determine WHY the application is slow, its asking you to measure the performance from different locations.
    Endpoint Monitoring monitors your server with HTTP Get requests from locations that you choose.
    References:
    https://azure.microsoft.com/en-us/documentation/articles/web-sites-monitor/#webendpointstatus https://azure.microsoft.com/en-us/documentation/articles/app-insights-web-monitor-performance/ B