It is impossible to pass Microsoft mcp 70 533 exam without any help in the short term. Come to Examcollection soon and find the most advanced, correct and guaranteed Microsoft microsoft azure certification 70 533 practice questions. You will get a surprising result by our Leading Implementing Microsoft Azure Infrastructure Solutions practice guides.

Q1. You manage several Azure virtual machines (VMs). You create a custom image to be used by employees on the development team. 

You need to ensure that the custom image is available when you deploy new servers. 

Which Azure Power Shell cmdlet should you use? 

A. Update-AzureVMImage 

B. Add-AzureVhd 

C. Add-AzureVMImage 

D. Update-AzureDisk 

E. Add-AzureDataDisk 

Answer:

Explanation: The Add-AzureVMImage cmdlet adds an operating system image to the 

image repository. The image should be a generalized operating system image, using either 

Sysprep for Windows or, for Linux, using the appropriate tool for the distribution. 

Example 

This example adds an operating system image to the repository. 

Windows PowerShell 

C:\PS>Add-AzureVMImage -ImageName imageName -MediaLocation 

http://yourstorageaccount.blob.core.azure.com/container/sampleImage.vhd -Label 

Reference: Add-AzureVMImage 


Q2. Your company has a subscription to Azure. You plan to deploy 10 websites. You have the following requirements: 

. Each website has at least 15 GB of storage. 

. All websites can use azurewebsite.net. 

You need to deploy the 10 websites while minimizing costs. 

Which web tier plan should you recommend? 

A. Free 

B. Small Business 

C. Standard 

D. Basic 

Answer:

Explanation: Standard offers 50 GB of storage space, while Basic only gives 10 GB: 

Reference: Websites Pricing Details 

URL: http://azure.microsoft.com/en-us/pricing/details/websites/ 

http://azure.microsoft.com/en-us/documentation/articles/azure-subscription-service-limits/ 


Q3. HOTSPOT 

You manage an Azure Web Site named contosoweb. 

Some users report that they receive the following error when they access contosoweb: 

"http Status 500.0 - Internal Server Error." 

You need to view detailed diagnostic information in XML format. 

Which option should you enable? To answer, select the appropriate option in the answer 

area. 

Answer: 


Q4. DRAG DROP 

You manage a solution deployed in two Azure subscriptions for testing and production. Both subscriptions have virtual networks named fabVNet. 

You plan to add two new virtual machines (VMs) in a new subnet. 

You have the following requirements: 

... 

Deploy the new VMs to the virtual network in the testing subscription. 

Minimize any errors in defining the network changes. 

Minimize the work that will be required when the change is made to the production 

virtual network. 

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: 


Q5. You manage a cloud service on two instances. The service name is Service1 and the role name is ServiceRole1. 

Service1 has performance issues during heavy traffic periods. 

You need to increase the existing deployment of Service1 to three instances. 

Which Power Shell cmdlet should you use? 

A. PS C:\>Set-AzureService -ServiceName "Service1” -Label "ServiceRole1' -Description "Instance count=3" 

B. PS C:\>Set-AzureRole -ServiceName "Service1" -Slot "Production” -RoleName "ServiceRole1" -Count 3 

C. PS C:\>Add-AzureWebRole -Name 'ServiceRole1" -Instances 3 

D. PS C:\> $instancecount = New-Object Hashtable$settings['INSTANCECOUNT=3] PS C:\> Set-AzureWebsite -AppSettings $instancecount ServiceRole1 

Answer:

Explanation: The Set-AzureRole cmdlet sets the number of instances of a specified role to run in an Azure deployment 

Example This command sets the "MyTestRole3" role running in production on the "MySvc1" service to three instances. 

Windows PowerShell C:\PS>Set-AzureRole –ServiceName "MySvc1" –Slot "Production" –RoleName 

"MyTestRole3" –Count 3 Reference: Set-AzureRole 


Q6. You administer an Azure Web Site named contoso. The development team has implemented changes to the website that need to be validated. 

You need to validate and deploy the changes with minimum downtime to users. 

What should you do first? 

A. Create a new Linked Resource. 

B. Configure Remote Debugging on contoso. 

C. Create a new website named contosoStaging. 

D. Create a deployment slot named contosoStaging. 

E. Back up the contoso website to a deployment slot. 

Answer:

Explanation: When you deploy your application to Azure Websites, you can deploy to a separate deployment slot instead of the default production slot, which are actually live sites with their own hostnames. 

Furthermore, you can swap the sites and site configurations between two deployment slots, including the production slot. Deploying your application to a deployment slot has the following benefits: 

* You can validate website changes in a staging deployment slot before swapping it with the production slot. 

* After a swap, the slot with previously staged site now has the previous production site. If the changes swapped into the production slot are not as you expected, you can perform the same swap immediately to get your "last known good site" back. 

* Deploying a site to a slot first and swapping it into production ensures that all instances of the slot are warmed up before being swapped into production. This eliminates downtime when you deploy your site. The traffic redirection is seamless, and no requests are dropped as a result of swap operations. 

Reference: Staged Deployment on Microsoft Azure Websites 


Q7. You administer an Access Control Service namespace named contosoACS that is used by a web application. ContosoACS currently utilizes Microsoft and Yahoo accounts. 

Several users in your organization have Google accounts and would like to access the web application through ContosoACS. 

You need to allow users to access the application by using their Google accounts. 

What should you do? 

A. Register the application directly with Google. 

B. Edit the existing Microsoft Account identity provider and update the realm to include Google. 

C. Add a new Google identity provider. 

D. Add a new WS-Federation identity provider and configure the WS-Federation metadata to point to the Google sign-in URL. 

Answer:

Explanation: Configuring Google as an identity provider eliminates the need to create and manage authentication and identity management mechanism. It helps the end user experience if there are familiar authentication procedures. 

Reference: Microsoft Azure, How to: Configure Google as an Identity Provider 

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


Q8. You manage a software-as-a-service application named SaasApp1 that provides user management features in a multi-directory environment. 

You plan to offer SaasApp1 to other organizations that use Azure Active Directory. 

You need to ensure that SaasApp1 can access directory objects. 

What should you do? 

A. Configure the Federation Metadata URL 

B. Register SaasApp1 as a native client application. 

C. Register SaasApp1 as a web application. 

D. Configure the Graph API. 

Answer:

Explanation: The Azure Active Directory Graph API provides programmatic access to Azure AD through REST API endpoints. Applications can use the Graph API to perform create, read, update, and delete (CRUD) operations on directory data and objects. For example, the Graph API supports the following common operations for a user object: / Create a new user in a directory / Get a user’s detailed properties, such as their groups / Update a user’s properties, such as their location and phone number, or change their password / Check a user’s group membership for role-based access / Disable a user’s account or delete it entirely 

Reference: Azure AD Graph API 

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