Exam 70-533: Implementing Microsoft Azure Infrastructure Solutions Part 1
Posted by Superadmin on November 15 2018 01:25:38

Exam 70-533: Implementing Microsoft Azure Infrastructure Solutions

 

 

Question ID 13656

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:
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.

Option A

Correct Answer A

 

Question ID 13657

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?

Option A

Create a new Linked Resource.

Option B

Configure Remote Debugging on contoso.

Option C

Create a new website named contosoStaging.

Option D

Create a deployment slot named contosoStaging.

Option E

Back up the contoso website to a deployment slot.

Correct Answer D
Description Explanation: The deployment slots feature for Azure Websites allows validating a version of your site with full content and configuration updates on the target platform before directing customer traffic to this version. The expectation is that a deployment slot would be fully configured in the desired target format before performing a swap. References:

 

 

 

 

 

Question ID 13658

Your company network includes users in multiple directories.
You plan to publish a software-as-a-service application named SaasApp1 to Azure Active
Directory.
You need to ensure that all users can access SaasApp1.
What should you do?

Option A

 Configure the Federation Metadata URL

Option B

Register the application as a web application.

Option C

Configure the application as a multi-tenant.

Option D

Register the application as a native client application.

Correct Answer C
Description Explanation: * When you get deeper into using Windows Azure Active Directory, youll run into new terminology. For instance, is called "directory" is also referred to as a Windows Azure AD Tenant or simply as "tenant." This stems from the fact that WAAD ()Windows Azure Active Directory is a shared service for many clients. In this service, every client gets its own separate space for which the client is the tenant. In the case of WAAD this space is a directory. This might be a little confusing, because you can create multiple directories, in WAAD terminology multiple tenants, even though you are a single client. * Multitenant Applications in Azure A multitenant application is a shared resource that allows separate users, or "tenants," to view the application as though it was their own. A typical scenario that lends itself to a multitenant application is one in which all users of the application may wish to customize the user experience but otherwise have the same basic business requirements. Examples of large multitenant applications are Office 365, Outlook.com, and visualstudio.com. 

Question ID 13659

You manage an Azure subscription.
You develop a storage plan with the following requirements:
In the table below, identify the storage redundancy type that must be used. Make only one
selection in each column.

 

Option A

Correct Answer A
Description 

 

 

 

 

 

Question ID 13660

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?

Option A

 Create an alert rule to monitor web endpoints.

Option B

Create a Notification Hub alert with response time metrics.

Option C

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

Option D

Configure the performance counter on the cloud service.

Correct Answer A
Description 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 

 


 

Question ID 13661

You manage an Azure Web Site for a consumer-product company.
The website runs in Standard mode on a single medium instance.
You expect increased traffic to the website due to an upcoming sale during a holiday
weekend.
You need to ensure that the website performs optimally when user activity is at its highest.
Which option should you select? To answer, select the appropriate option in the answer
area.

Option A

Correct Answer A
Description 

 

Question ID 13662

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.

Option A

Option F

Correct Answer*: A

Correct Answer A
Description 

Question ID 13663

You plan to deploy a cloud service named contosoapp that has a web role named
contosoweb and a worker role named contosoimagepurge.
You need to ensure the service meets the following requirements:
Which configuration should you use? To answer, drag the appropriate configuration setting
to the correct location in the service configuration file. Each configuration setting 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.

Option A

Correct Answer A
Description 

 

Question ID 13664

You administer a virtual machine (VM) that is deployed to Azure. You configure a rule to
generate an alert when the average availability of a web service on your VM drops below
95 percent for 15 minutes.
The development team schedules a one-hour maintenance period.
You have the following requirements:
You want to achieve this goal by using the least amount of administrative effort.
What should you do from the Management Portal?

Option A

Select and disable the rule from the Dashboard page of the virtual machine.

Option B

Select and delete the rule from the Configure page of the virtual machine.

Option C

Select and disable the rule from the Monitor page of the virtual machine.

Option D

Select and disable the rule on the Configure page of the virtual machine.

Option F

Answer : C

Explanation: * Example:

Correct Answer A
Description 

 

 

 

Question ID 13665

You have a virtual machine (VM) that must be secured. Direct access to the VM is not
permitted. You create the following Azure PowerShell script. Line numbers are included for
reference only.

You assign the virtual network to the variable $vnet. You assign the subnet to the variable
$backendSubnet. For each of the following statements, select Yes if the statement is true.
Otherwise, select No.

Option A

Correct Answer A

Description 

 

 

Question ID 13666

You develop a set of Power Shell scripts that will run when you deploy new virtual
machines (VMs).
You need to ensure that the scripts are executed on new VMs. You want to achieve this
goal by using the least amount of administrative effort.
What should you do?

Option A

Create a new GPO to execute the scripts as a logon script.

Option B

Create a SetupComplete.cmd batch file to call the scripts after the VM starts.

Option C

Create a new virtual hard disk (VHD) that contains the scripts.

Option D

Load the scripts to a common file share accessible by the VMs.

Option E

Set the VMs to execute a custom script extension.

Correct Answer E

Description Explanation: After you deploy a Virtual Machine you typically need to make some changes before its ready to use. This is something you can do manually or you could use Remote PowerShell to automate the configuration of your VM after deployment for example. But now theres a third alternative available allowing you customize your VM: the CustomScript extension. This CustomScript extension is executed by the VM Agent and its very straightforward: you specify which files it needs to download from your storage account and which file it needs to execute. You can even specify arguments that need to be passed to the script. The only requirement is that you execute a .ps1 file.

Question ID 13667

You develop a set of Power Shell scripts that will run when you deploy new virtual
machines (VMs).
You need to ensure that the scripts are executed on new VMs. You want to achieve this
goal by using the least amount of administrative effort.
What should you do?

Option A

Create a new GPO to execute the scripts as a logon script.

Option B

Create a SetupComplete.cmd batch file to call the scripts after the VM starts.

Option C

Create a new virtual hard disk (VHD) that contains the scripts.

Option D

 Load the scripts to a common file share accessible by the VMs.

Option E

Set the VMs to execute a custom script extension.

Correct Answer E

Description Explanation: After you deploy a Virtual Machine you typically need to make some changes before its ready to use. This is something you can do manually or you could use Remote PowerShell to automate the configuration of your VM after deployment for example. But now theres a third alternative available allowing you customize your VM: the CustomScript extension. This CustomScript extension is executed by the VM Agent and its very straightforward: you specify which files it needs to download from your storage account and which file it needs to execute. You can even specify arguments that need to be passed to the script. The only requirement is that you execute a .ps1 file. 
Update Date and Time 2017-10-20 10:14:47

 

 

 

Question ID 13668

You administer a Microsoft Azure SQL Database database in the US Central region named
contosodb. Contosodb runs on a Standard tier within the SI performance level.
You have multiple business-critical applications that use contosodb.
You need to ensure that you can bring contosodb back online in the event of a natural
disaster in the US Central region. You want to achieve this goal with the least amount of
downtime.
Which two actions should you perform? Each correct answer presents part of the solution.

Option A

Upgrade to S2 performance level.

Option B

Use active geo-replication.

Option C

Use automated Export.

Option D

Upgrade to Premium tier.

Option E

Use point in time restore.

Option F

Downgrade to Basic tier.

Correct Answer B,D

Description Explanation: B: The Active Geo-Replication feature implements a mechanism to provide database redundancy within the same Microsoft Azure region or in different regions (geo- redundancy). One of the primary benefits of Active Geo-Replication is that it provides a database-level disaster recovery solution. Using Active Geo-Replication, you can configure a user database in the Premium service tier to replicate transactions to databases on different Microsoft Azure SQL Database servers within the same or different regions. Cross-region redundancy enables applications to recover from a permanent loss of a datacenter caused by natural disasters, catastrophic human errors, or malicious acts. D: Active Geo-Replication is available for databases in the Premium service tier only. 

Question ID 13669

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.

Option A

Verify the email domain in Azure AD domains.

Option B

Run the Set-MsolUserPrincipalName -UserPrincipalName %username%@contoso.onmicrosoft.com -NewUserPrincipalName %usemame %@contoso.com Power Shell cmdlet.

Option C

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

Option D

Verify the Windows AD DNS domain in Azure AD domains.

Option E

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

Correct Answer B,D

Description 

 

 

Question ID 13670

You administer an Azure Active Directory (Azure AD) tenant.
You add a custom application to the tenant.
The application must be able to:
In the table below, identify the permission that must be granted to the application. Make
only one selection in each column.

Option A

Correct Answer A
Description 

Question ID 13671

You have an application that uses an Azure SQL Database.
The database becomes corrupt and is not usable.
You must configure point in time recovery to replace the database.
Which three actions 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.

Option A

Correct Answer A

Description 

 

 

Question ID 13672

You administer a Microsoft Azure SQL Database data base in the US Central region
named contosodb. Contosodb runs on a Standard tier within the S1 performance level.
You have multiple business-critical applications that use contosodb.
You need to ensure that you can bring contosodb back online in the event of a natural
disaster in the US Central region. You want to achieve this goal with the least amount of
downtime.
Which two actions should you perform? Each correct answer presents part of the solution.

Option A

Upgrade to S2 performance level.

Option B

Use active geo-replication.

Option C

Use automated Export.

Option D

Upgrade to Premium tier.

Option E

Use point in time restore.

Option F

Downgrade to Basic tier.

Correct Answer B,D

Description Explanation: B: The Active Geo-Replication feature implements a mechanism to provide database redundancy within the same Microsoft Azure region or in different regions (geo- redundancy). One of the primary benefits of Active Geo-Replication is that it provides a database-level disaster recovery solution. Using Active Geo-Replication, you can configure a user database in the Premium service tier to replicate transactions to databases on different Microsoft Azure SQL Database servers within the same or different regions. Cross-region redundancy enables applications to recover from a permanent loss of a datacenter caused by natural disasters, catastrophic human errors, or malicious acts. D: Active Geo-Replication is available for databases in the Premium service tier only. 
Update Date and Time 2017-10-20 10:42:19

 

 

Question ID 13673

You administer an Azure Virtual Machine (VM) named CON-CL1. CON-CL1 is in a cloud
service named ContosoService1.
You want to create a new VM named MyApp that will have a fixed IP address and be
hosted by an Azure Datacenter in the US West region.
You need to assign a fixed IP address to the MyApp VM.
Which Azure Power Shell cmdlets and values should you use? To answer, drag the
appropriate cmdlet or value to the correct location in the PowerShell command. Each
cmdlet or 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

Option A

Correct Answer A
Description 

 

Question ID 13674

You have an Azure Web App that uses the URL contoso.azurewebsites.net. The virtual IP
address of the web app is subject to change.
Users must be able to navigate to a custom domain name to access the Web App. You set
up the DNS records for a custom domain at a third party registrar.
You need to configure the web app to use the custom domain name.
For each mapping, which DNS record type should you create? To answer, select the
appropriate DNS record type from each list in the answer area.

Option A

Correct Answer A

Description 

 

 

Question ID 13675

You are the administrator for three Azure subscriptions named Dev, Test, and Prod.
Your Azure Power Shell profile is configured with the Dev subscription as the default.
You need to create a new virtual machine in the Test subscription by using the least
administrative effort.
Which Power Shell command should you use?

Option A

 Option A

Option B

 Option B

Option C

 Option C

Option D

 Option D

Correct Answer A
Description Explanation: Example: Set the current subscription This command makes Testthe current subscription. Windows PowerShell C:\PS> Select-AzureSubscription -SubscriptionName Test -Current References:

 

 

 

Question ID 13676

You administer an Azure Storage account with a blob container. You enable Storage
account logging for read, write and delete requests.
You need to reduce the costs associated with storing the logs.
What should you do?

Option A

Execute Delete Blob requests over https.

Option B

Create an export job for your container.

Option C

Set up a retention policy.

Option D

Execute Delete Blob requests over http.

Correct Answer C
Description Explanation: To ease the management of your logs, we have provided the functionality of retention policy which will automatically cleanup old logs without you being charged for the cleanup. It is recommended that you set a retention policy for logs such that your analytics data will be within the 20TB limit allowed for analytics data (logs and metrics combined). References:

 

Question ID 13677

You manage a cloud service that has a web role named fabWeb. You create a virtual
network named fabVNet that has two subnets defined as Web and Apps.
You need to be able to deploy fabWeb into the Web subnet.
What should you do?

Option A

Modify the service definition (csdef) for the cloud service.

Option B

Run the Set-AzureSubnet PowerShell cmdlet.

Option C

Run the Set-AzureVNetConfig PowerShell cmdlet.

Option D

Modify the network configuration file.

Option E

Modify the service configuration (cscfg) for the fabWeb web role.

Correct Answer A

Description Explanation: Azure Service Definition Schema (.csdef File) The service definition file defines the service model for an application. The file contains the definitions for the roles that are available to a cloud service, specifies the service endpoints, and establishes configuration settings for the service.

 

 

 

 

Question ID 13678

For development purposes, you deploy several virtual machines in an Azure subscription.
Developers report that the virtual machines fail to access each other.
You export the virtual network configuration for the subscription as shown in the following
output.

You need to modify the network configuration to resolve the connection issue.
What should you modify?

Option A

the IP address range of Subnet-1

Option B

the IP address range of the gateway subnet. the IP address of the DNS server

Option C

the site of the virtual network

Correct Answer C
Description 

 

 

 

Question ID 13679

You administer an Azure Storage account named contosostorage. The account has a blob
container to store image files.
A user reports being unable to access an image file.
You need to ensure that anonymous users can successfully read image files from the
container.
Which log entry should you use to verify access?

Option A

Option A

Option B

Option B

Option C

Option C

Option D

Option D

Correct Answer A

Description Explanation: Check for GetBlob and for AnonymousSuccess. Example: Get Blob AnonymousSuccess: 1.0;2011-07- 28T18:52:40.9241789Z;GetBlob;AnonymousSuccess;200;18;10;anonymous;;sally;blob;"htt p:// sally.blob.core.windows.net/thumbnails/lake.jpg?timeout=30000";"/sally/thumbnails/lake.jpg ";a84aa705-8a85-48c5-b064-b43bd22979c3;0;123.100.2.10;2009-09- 19;252;0;265;100;0;;;"0x8CE1B6EA95033D5";Thursday, 28-Jul-11 18:52:40 GMT;;;;"7/28/2011 6:52:40 PM ba98eb12-700b-4d53-9230-33a3330571fc" Incorrect: Not C: Check for AnonymousSuccess not Access. Not B, not D: Check for GetBlob not GetBlobProperties References:
Update Date and Time 2017-10-20 11:10:15

 

 

 

 

 

Question ID 13680

You manage an Azure virtual network that hosts 15 virtual machines (VMs) on a single
subnet, which is used for testing a line of business (LOB) application. The application is
deployed to a VM named TestWebServiceVM.
You need to ensure that TestWebServiceVM always starts by using the same IP address.
You need to achieve this goal by using the least amount of administrative effort.
What should you do?

Option A

 Use the Management Portal to configure TestWebServiceVM.

Option B

Use RDP to configure TestWebServiceVM.

Option C

Run the Set-AzureStaticVNetIP PowerShell cmdlet.

Option D

Run the Get-AzureReservedIP PowerShell cmdlet.

Correct Answer C
Description Explanation: Specify a static internal IP for a previously created VM If you want to set a static IP address for a VM that you previously created, you can do so by using the following cmdlets. If you already set an IP address for the VM and you want to change it to a different IP address, youll need to remove the existing static IP address before running these cmdlets. See the instructions below to remove a static IP. For this procedure, youll use the Update-AzureVM cmdlet. The Update-AzureVM cmdlet restarts the VM as part of the update process. The DIP that you specify will be assigned after the VM restarts. In this example, we set the IP address for VM2, which is located in cloud service StaticDemo. Get-AzureVM -ServiceName StaticDemo -Name VM2 | Set-AzureStaticVNetIP -IPAddress 192.168.4.7 | Update-AzureVM References:
Update Date and Time 2017-10-20 11:11:04

 

 

Question ID 13681

You have an Azure subscription.
In Azure, you create two virtual machines named VM1 and VM2. Both virtual machines are
instances in a cloud service named Cloud1.
You need to ensure that the virtual machines only replicate within the data center in which
they were created.
Which settings should you modify?

Option A

virtual machine

Option B

storage account

Option C

 cloud services

Option D

Azure subscription

Correct Answer B

Description 
Update Date and Time 2017-10-20 11:11:50

 

 

 

 

Question ID 13682

You manage an Azure subscription with virtual machines (VMs) that are running in
Standard mode.
You need to reduce the storage costs associated with the VMs.
What should you do?

Option A

 Locate and remove orphaned disks.

Option B

Add the VMs to an affinity group.

Option C

Change VMs to the Basic tier.

Option D

 Delete the VHD container.

Correct Answer C
Description Explanation: Standard offers 50 GB of storage space, while Basic only gives 10 GB but it will save costs. References:

 

Question ID 13683

Your development team has created a new solution that is deployed in a virtual network
named fabDevVNet.
Your testing team wants to begin testing the solution in a second Azure subscription.
You need to create a virtual network named fabTestVNet that is identical to fabDevVNet.
You want to achieve this goal by using the least amount of administrative effort.
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.

Option A

Correct Answer A
Description 

 

 

Question ID 13684

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.

Option A

Correct Answer A
Description 

 

Question ID 13685

You manage an application hosted on cloud services. The development team creates a
new version of the application. The updated application has been packaged and stored in
an Azure Storage account.
You have the following requirements:
Which four 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.

Option A

Correct Answer A
Description 
Update Date and Time 2017-10-20 11:19:09

 

Question ID 13686

You create a Push Notification service by using an Azure Notification Hub.
You need to monitor the Notification Hub programmatically.
Which three actions 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.

Option A

Correct Answer A

Description 
Update Date and Time 2017-10-20 11:22:12

 

 

 

Question ID 13687

You have an Azure SQL Database named Contosodb. Contosodb is running in the
Standard/S2 tier and has a service level objective of 99 percent.
You review the service tiers in Microsoft Azure SQL Database as well as the results of
running performance queries for the usage of the database for the past week as shown in
the exhibits. (Click the Exhibits button.)

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

Option A

Correct Answer A
Description 
Update Date and Time 2017-10-20 11:59:01

 

Question ID 13688

You have an Azure SQL Database named Contosodb. Contosodb is running in the
Standard/S2 tier and has a service level objective of 99 percent.
You review the service tiers in Microsoft Azure SQL Database as well as the results of
running performance queries for the usage of the database for the past week as shown in
the exhibits. (Click the Exhibits button.)

Option A

Correct Answer A

Description 
Update Date and Time 2017-10-20 12:03:15

 

 

 

 

Question ID 13689

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?

Option A

 Configure the Federation Metadata URL

Option B

Register SaasApp1 as a native client application.

Option C

Register SaasApp1 as a web application.

Option D

 Configure the Graph API.

Correct Answer D
Description 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 users detailed properties, such as their groups / Update a users properties, such as their location and phone number, or change their password / Check a users group membership for role-based access / Disable a users account or delete it entirely References:
Update Date and Time 2017-10-20 12:04:06

 

Question ID 13690

You manage a large datacenter that has limited physical space.
You plan to extend your datacenter to Azure.
You need to create a connection that supports a multiprotocol label switching (MPLS)
virtual private network.
Which connection type should you use?

Option A

Site-to-site

Option B

 VNet-VNet

Option C

ExpressRoute.

Option D

Site-to-peer

Correct Answer C
Description Explanation: ExpressRoute allows you to securely add compute and storage capacity to your existing datacenter. With high throughput and fast latencies, Azure will feel like a natural extension to your datacenter so you enjoy the scale and economics of the public cloud without having to compromise on network performance. References:
Update Date and Time 2017-10-20 12:04:58

 

Question ID 13691

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.

Option A

Deploy a third instance of the VM.

Option B

Configure Load Balancing on the VMs.

Option C

Redeploy the VMs to belong to an Affinity Group.

Option D

Configure the VMs to belong to an Availability Set.

Correct Answer A,B
Description
Update Date and Time 2017-10-20 12:06:04

 

Question ID 13692

You manage an Azure virtual machine (VM) named AppVM. The application hosted on
AppVM continuously writes small files to disk. Recently the usage of applications on
AppVM has increased greatly.
You need to improve disk performance on AppVM.
Which Microsoft Azure Power Shell cmdlet should you use with each Power Shell
command line? To answer, drag the appropriate Microsoft Azure Power Shell cmdlet to the
correct location in the Power Shell code. Each Power Shell 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.

Option A

Correct Answer A
Description
Update Date and Time 2017-10-20 12:08:02