70-533 | how many questions of 70-533 dumps?


Q1. You administer an Azure Web Site named contoso. You create a job named Cleanlogs.cmd that will be executed manually, twice a week. 

You need to deploy the job. 

To which folder location should you deploy CleanLogs.cmd? 

A. ./App_Code/jobs/triggered/cleanLogs/CleanLogs.cmd 

B. ./App_Data/jobs/triggered/clean Logs/CleanLogs.cmd 

C. ./App_Code/jobs/continuous/cleanLogs/CleanLogs.cmd 

D. ./App_Data/jobs/continuous/cleanLogs/CleanLogs.cmd 

Answer:

Explanation: A WebJob is stored under the following directory in your site: 

sitewwwrootApp_Datajobs{job type}{job name} 

Where {job type} can be either continuous for a job that is always running or triggered for a job that starts from an external trigger (on demand / scheduler). 

Reference: How to deploy Azure WebJobs 

URL: http://blog.amitapple.com/post/74215124623/deploy-azure-webjobs/#.VDZam_mSx8E 

Q2. You manage a cloud service that hosts a customer-facing application. The application allows users to upload images and create collages. The cloud service is running in two medium instances and utilizes Azure Queue storage for image processing. The storage account is configured to be locally redundant. 

The sales department plans to send a newsletter to potential clients. As a result, you expect a significant increase in global traffic. 

You need to recommend a solution that meets the following requirements: 

. Configure the cloud service to ensure the application is responsive to the traffic increase. . Minimize hosting and administration costs. 

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

A. Configure the cloud service to run in two Large instances. 

B. Configure the cloud service to auto-scale to three instances when processor utilization is above 80%. 

C. Configure the storage account to be geo-redundant 

D. Deploy a new cloud service in a separate data center. Use Azure Traffic Manager to load balance traffic between the cloud services. 

E. Configure the cloud service to auto-scale when the queue exceeds 1000 entries per machine. 

Answer: B,E 

Explanation: * An autoscaling solution reduces the amount of manual work involved in dynamically scaling an application. It can do this in two different ways: either preemptively by setting constraints on the number of role instances based on a timetable, or reactively by adjusting the number of role instances in response to some counter(s) or measurement(s) that you can collect from your application or from the Azure environment. 

Reference: Autoscaling and Microsoft Azure 

Q3. You manage an Azure Web Site named contosoweb. Logging is enabled for contosoweb. 

You need to view only errors from your log files in a continuous stream as they occur. 

Which Windows Power Shell command should you execute? 

A. Get-AzureWebSiteLog -Name contosoweb -OutBuffer Error 

B. Save-AzureWebSiteLog -Name contosoweb -Output Errors 

C. Get-AzureWebSiteLog -Name contosoweb -Tail –Message Error 

D. Get-Azure WebSiteLog -Name contosoweb -Message Error 

Answer:

Explanation: Example 

This example starts log streaming and show error logs only. 

Windows PowerShell 

C:PS>Get-AzureWebsiteLog -Tail -Message Error 

Reference: Get-AzureWebsiteLog 

URL: http://msdn.microsoft.com/en-us/library/dn495187.aspx 

Q4. Your company network includes an On-Premises Windows Active Directory (AD) that has a DNS domain named contoso.local and an email domain named contoso.com. You plan to migrate from On-Premises Exchange to Office 365. 

You configure DirSync and set all Azure Active Directory {Azure AD) 

usernames as %username%@contoso.com 

You need to ensure that each user is able to log on by using the email domain as the username. 

Which two actions should you perform? Each correct answer presents part of the solution. 

A. Verify the email domain in Azure AD domains. 

B. Run the Set-MsolUserPnncipalName -UserPnncipalName %username%@co ntoso.onmicrosoft.com -NewUserPrincipalName %usemame %@contoso.com Power Shell cmdlet. 

C. Edit the ProxyAddress attribute on the On-Premises Windows AD user account. 

D. Verify the Windows AD DNS domain in Azure AD domains. 

E. Update the On-Premises Windows AD user account UPN to match the email address. 

Answer: C,D 

Explanation: * There are two main traffic flows originating from the server hosting the Azure Active Directory Sync tool: The Azure Active Directory Sync tool queries a domain controller on the on-premises network for changes to accounts and passwords. The Azure Active Directory Sync tool sends the changes to accounts and passwords to the Azure AD instance of your Office 365 subscription. These changes are sent through the on-premises network’s proxy server. 

* Verify that your virtual machine is joined to the domain by checking your internal DNS to make sure that an Address (A) record was added for the virtual machine with the correct IP address from Azure. For the Azure Active Directory Sync tool to gain access to Internet resources, you must configure the server that runs the Azure Active Directory Sync tool to use the on-premises network's proxy server. 

Reference: Deploy Office 365 Directory Synchronization in Microsoft Azure 

Q5. You manage a web application published to Azure Cloud Services. 

Your service level agreement (SLA) requires that you are notified in the event of poor performance from customer locations in the US, Asia, and Europe. 

You need to configure the Azure Management Portal to notify you when the SLA performance targets are not met. 

What should you do? 

A. Create an alert rule to monitor web endpoints. 

B. Create a Notification Hub alert with response time metrics. 

C. Add an endpoint monitor and alert rule to the Notification Hub. 

D. Configure the performance counter on the cloud service. 

Answer:

Explanation: * An alert rule enables you to monitor an available metric within a supported Azure service. When the value of a specified metric violates the threshold assigned for a rule, the alert rule becomes active and registers an alert. When you create an alert rule, you can select options to send an email notification to the service administrator and co-administrators, or another administrator, when the rule becomes active, and when an alert condition is resolved. 

* You can configure cloud service alert rules on: 

Web endpoint status metrics Monitoring metrics from the cloud service host operating system Performance counters collected from the cloud service guest virtual machine 

: Understanding Monitoring Alerts and Notifications in Azure 

URL: http://msdn.microsoft.com/en-us/library/azure/dn306639.aspx 

Q6. HOTSPOT 

You manage two cloud services named Service1 and Service2. The development team updates the code for each application and notifies you that the services are packaged and ready for deployment. 

Each cloud service has specific requirements for deployment according to the following table. 

In the table below, identify the deployment method for each service. Make only one selection in each column. 

Answer: 

Q7. 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? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:

Explanation: This example creates a new Windows virtual machine configuration with operating system disk, data disk and provisioning configuration. This configuration is then used to create a new virtual machine. 

C:PS> $image = (Get-AzureVMImage).ImageName C:PS>New-AzureVMConfig -Name "MyVM1" -InstanceSize ExtraSmall -ImageName $image ` | Add-AzureProvisioningConfig -Windows -Password $adminPassword ` | Add-AzureDataDisk -CreateNew -DiskSizeInGB 50 -DiskLabel 'datadisk1' -LUN 0 ` | New-AzureVM –ServiceName "MySvc1" 

Reference: New-AzureVMConfig 

URL: http://msdn.microsoft.com/en-us/library/dn495159.aspx 

Q8. DRAG DROP 

You publish a multi-tenant application named MyApp to Azure Active Directory (Azure AD). 

You need to ensure that only directory administrators from the other organizations can access MyApp's web API. 

How should you configure MyApp's manifest JSON file? To answer, drag the appropriate PowerShell command to the correct location in the application's manifest JSON file. Each value 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. 

Answer: 

Q9. DRAG DROP 

You administer a virtual machine (VM) that is deployed to Azure. The VM hosts a web service that is used by several applications. 

You need to ensure that the VM sends a notification In the event that the average response time for the web service exceeds a pre-defined response time for an hour or more. 

Which three steps should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order. 

Answer: 

Q10. You administer a DirSync server configured with Azure Active Directory (Azure AD). 

You need to provision a user in Azure AD without waiting for the default DirSync synchronization interval. 

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

A. Restart the DirSync server. 

B. Run the Start-OnlineCoexistenceSync PowerShell cmdlet. 

C. Run the Enable-SyncShare PowerShell cmdlet. 

D. Run the Azure AD Sync tool Configuration Wizard. 

E. Replicate the Directory in Active Directory Sites and Services. 

Answer: B,D 

Explanation: If you don’t want to wait for the recurring synchronizations that occur every three hours, you can force directory synchronization at any time. 

B: Force directory synchronization using Windows PowerShell 

You can use the directory synchronization Windows PowerShell cmdlet to force synchronization. The cmdlet is installed when you install the Directory Sync tool. On the computer that is running the Directory Sync tool, start PowerShell, type Import-Module DirSync, and then press ENTER. 

Type Start-OnlineCoexistenceSync, and then press ENTER. 

D: Azure Active Directory Sync Services (AAD Sync) 

In September 2014 the Microsoft Azure AD Sync tool was released. This changed how 

manual sync requests are issued. 

To perform a manual update we now use the DirectorySyncClientCmd.exe tool. The Delta 

and Initial parameters are added to the command to specify the relevant task. 

This tool is located in: 

C:Program FilesMicrosoft Azure AD SyncBin 

You can use the directory synchronization Windows PowerShell cmdlet to force 

synchronization. The cmdlet is installed when you install the Directory Sync tool. On the computer that is running the Directory Sync tool, start PowerShell, type Import-Module DirSync, and then press ENTER. 

Type Start-OnlineCoexistenceSync, and then press ENTER.