PrepAway - Latest Free Exam Questions & Answers

Category: 70-532 (v.5)

Briefing 70-532: Developing Microsoft Azure Solutions (update November 23th, 2017)

Which code segment should you add at line PC29?

Case Study
This is a case study. Case studies are not timed separately. You can use as much exam time as you would like
to complete each case. However, there may be additional case studies and sections on this exam. You must
manage your time to ensure that you are able to complete all questions included on this exam in the time
provided.
To answer the questions included in a case study, you will need to reference information that is provided in the
case study. Case studies might contain exhibits and other resources that provide more information about the
scenario that is described in the case study. Each question is independent of the other question on this case
study.
At the end of this case study, a review screen will appear. This screen allows you to review your answers and to
make changes before you move to the next sections of the exam. After you begin a new section, you cannot
return to this section.
To start the case study
To display the first question on this case study, click the Next button. Use the buttons in the left pane to explore
the content of the case study before you answer the questions. Clicking these buttons displays information such
as business requirements, existing environment, and problem statements. If the case study has an All
Information tab, note that the information displayed is identical to the information displayed on the subsequent
tabs. When you are ready to answer a question, click the Question button to return to the question.
Background
You are a developer for LitWare, Inc., a game development company. You are developing a backend service
for an online social gaming platform named GamerData. The game is built around point generators, which are
associated with physical landmarks. Players claim point generators which give them a set amount of points per
day.
Business Requirements
Mobile App
The game itself runs on various mobile devices and is developed by TailSpin Toys, a company that specializes
in mobile game development. The mobile app will periodically make calls to the GamerData service to find the
five closest point generators that are located less than the specified distance from the player’s current location.
If no point generators are found, the search distance increases until one is found.
The mobile app shows all the point generators owned by each player. The mobile app allows for each player to
search for claimed point generators by player name. This search does not require exact spelling of names. The
details for each claimed generator is shown in the app.
When a player claims a point generator, they should receive an email notification. An Azure Function named
EmailPlayer has been developed to email players with details about recently claimed point generators.
Sponsors
The platform allows business to sponsor point generators within a business location.
Reports
A report named Daily Sponsor Report must be generated each day at midnight. The report must contain a
section for each sponsor. Each sponsor section must contain two subsections.
The first subsection of the report contains the names of the point generators for that sponsor, ordered by thelast time the point generator was claimed. The second subsection contains the current owners for each of the
point generators for the sponsor. Generation of reports must not impact the GamerData service.
Technical Requirements
GamerData Service
All data for the GamerData service is stored in an Azure DocumentDB instance named GamerData. Business
and players interact with the service by using a REST API.
The REST API must:
Produce valid Swagger API specifications for non-obsolete actions.
Be optimized for loading specific point generators.
Follow REST best practices.
Include appropriate terms of service.
Costs for all Azure services must be minimized.
Build and Deployment
The GamerData service will be deployed to Azure in a private VNet.
Security
Sponsors have accounts in an Azure Active Directory (Azure AD) with business-to-consumer (B2C) enabled
named litwaregamerdata.onmicrosoft.com managed by Litware, Inc. for both GamerData and LitWare, Inc.
services.
Only Litware, Inc. developers and automated testing tools should be able to directly access the GamerData
service. All other use of the service must be through Azure API Management. A description of the security
practices used during development, available on Microsoft SharePoint, must be available to users of the API
under the terms of service.
Reporting
Azure Search will be used as the source for running reports. The properties of indexes in Azure Search must
match the names of the properties in DocumentDB.
Performance
The Azure DocumentDB must not be used for reporting purposes. All services must perform queries in the data
store when possible.
Application Structure
Startup.cs
Relevant portions of the app files are shown below. (Line numbers in the code segments are included for
reference only and include a two-character prefix that denotes the specific file to which they belong.)

PointController.cs
Relevant portions of the app files are shown below. (Line numbers in the code segments are included for
reference only and include a two-character prefix that denotes the specific file to which they belong.)

PointGenerator.cs
Relevant portions of the app files are shown below. (Line numbers in the code segments are included for
reference only and include a two-character prefix that denotes the specific file to which they belong.)

You need to add a routing constraint.
Which code segment should you add at line PC29?

How should you complete the code segment?

DRAG DROP
You are developer working on a project that will be deployed to Azure. The project includes a local SQL Server
database.
You need to migrate the database to Azure SQL.
How should you complete the code segment? To answer, drag the appropriate code segment to the correct
location or locations. Each code segment may be used once, more than once, or not at all. You may need todrag the split bar between panes or scroll to view content.
Select and Place:

How should you configure the Azure Search index?

Case Study
This is a case study. Case studies are not timed separately. You can use as much exam time as you would like
to complete each case. However, there may be additional case studies and sections on this exam. You must
manage your time to ensure that you are able to complete all questions included on this exam in the time
provided.
To answer the questions included in a case study, you will need to reference information that is provided in the
case study. Case studies might contain exhibits and other resources that provide more information about the
scenario that is described in the case study. Each question is independent of the other question on this case
study.
At the end of this case study, a review screen will appear. This screen allows you to review your answers and to
make changes before you move to the next sections of the exam. After you begin a new section, you cannot
return to this section.
To start the case study
To display the first question on this case study, click the Next button. Use the buttons in the left pane to explore
the content of the case study before you answer the questions. Clicking these buttons displays information such
as business requirements, existing environment, and problem statements. If the case study has an All
Information tab, note that the information displayed is identical to the information displayed on the subsequent
tabs. When you are ready to answer a question, click the Question button to return to the question.
BackgroundYou are a developer for LitWare, Inc., a game development company. You are developing a backend service
for an online social gaming platform named GamerData. The game is built around point generators, which are
associated with physical landmarks. Players claim point generators which give them a set amount of points per
day.
Business Requirements
Mobile App
The game itself runs on various mobile devices and is developed by TailSpin Toys, a company that specializes
in mobile game development. The mobile app will periodically make calls to the GamerData service to find the
five closest point generators that are located less than the specified distance from the player’s current location.
If no point generators are found, the search distance increases until one is found.
The mobile app shows all the point generators owned by each player. The mobile app allows for each player to
search for claimed point generators by player name. This search does not require exact spelling of names. The
details for each claimed generator is shown in the app.
When a player claims a point generator, they should receive an email notification. An Azure Function named
EmailPlayer has been developed to email players with details about recently claimed point generators.
Sponsors
The platform allows business to sponsor point generators within a business location.
Reports
A report named Daily Sponsor Report must be generated each day at midnight. The report must contain a
section for each sponsor. Each sponsor section must contain two subsections.
The first subsection of the report contains the names of the point generators for that sponsor, ordered by the
last time the point generator was claimed. The second subsection contains the current owners for each of the
point generators for the sponsor. Generation of reports must not impact the GamerData service.
Technical Requirements
GamerData Service
All data for the GamerData service is stored in an Azure DocumentDB instance named GamerData. Business
and players interact with the service by using a REST API.
The REST API must:
Produce valid Swagger API specifications for non-obsolete actions.
Be optimized for loading specific point generators.
Follow REST best practices.
Include appropriate terms of service.
Costs for all Azure services must be minimized.
Build and Deployment
The GamerData service will be deployed to Azure in a private VNet.
Security
Sponsors have accounts in an Azure Active Directory (Azure AD) with business-to-consumer (B2C) enabled
named litwaregamerdata.onmicrosoft.com managed by Litware, Inc. for both GamerData and LitWare, Inc.
services.
Only Litware, Inc. developers and automated testing tools should be able to directly access the GamerDataservice. All other use of the service must be through Azure API Management. A description of the security
practices used during development, available on Microsoft SharePoint, must be available to users of the API
under the terms of service.
Reporting
Azure Search will be used as the source for running reports. The properties of indexes in Azure Search must
match the names of the properties in DocumentDB.
Performance
The Azure DocumentDB must not be used for reporting purposes. All services must perform queries in the data
store when possible.
Application Structure
Startup.cs
Relevant portions of the app files are shown below. (Line numbers in the code segments are included for
reference only and include a two-character prefix that denotes the specific file to which they belong.)

PointController.cs
Relevant portions of the app files are shown below. (Line numbers in the code segments are included for
reference only and include a two-character prefix that denotes the specific file to which they belong.)

PointGenerator.cs
Relevant portions of the app files are shown below. (Line numbers in the code segments are included for
reference only and include a two-character prefix that denotes the specific file to which they belong.)

You need to create the Azure Search index.
How should you configure the Azure Search index? To answer, select the appropriate options in the answer
area.
NOTE: Each correct selection is worth one point.
Hot Area:

Which solutions should you recommend?

DRAG DROP
You plan to connect a customer’s on-premises infrastructure to Azure. You have several connections available.
You have the following requirements:
All connections must be secure.
All on-premises solutions must support hybrid functionality.
You need to recommend connectivity solutions.
Which solutions should you recommend? To answer, drag the appropriate connection strategy to the correct
connection. Each connection strategy 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:

Which endpoint should you use?

You have an on-premises Windows Identity Foundation (WIF) application. A section of the application uses
resources that are hosted in Azure. The application uses Azure Active Directory (Azure AD) to control access to
the section of the application that accesses Azure resources. You synchronize all user principals to Azure
Active Directory.
The application has the following requirements:
Use Windows integrated credentials for single sign-on (SSO).
Use Azure Active Directory as an identity provider.
You need to create an endpoint to use for web sign-in to the secured section of the application.
Which endpoint should you use?

How should you complete the code segment?

HOTSPOT
You deploy a cloud service that reads and processes orders from a queue by using a worker role. The service
includes a C# class named OrderProcessor.
Your organization is moving all Azure resources to use Azure Resource Manager (ARM) templates. You must
migrate the code to Service Fabric. You establish a new Service Fabric cluster to deploy the updated code. You
migrate all settings from the ServiceConfiguration.cscfg to a new Settings.xml file that each Service Fabric
instance will use.
You need to update the code for the OrderProcessor class.
How should you complete the code segment? To answer, select the appropriate options in the answer area.
Hot Area:

Which five actions should you perform in sequence?

DRAG DROP
You have six Ubuntu Linux virtual machines (VMs) that run a Hadoop cluster on Azure. All VMs were deployed
by using Azure Resource Manager (ARM) templates and Azure PowerShell cmdlets. One of the VMs runs a
custom web user interface that allows users to examine the processing jobs within the Hadoop cluster. You are
planning a backup strategy for long-term retention and recovery that includes geo-replication.The backup and recovery solution must be cost effective.
You need to backup all VMs.
Which five actions should you perform in sequence? To answer, move the appropriate actions from the list of
actions in the answer area and arrange them in the correct order.
Select and Place:

You need to optimize SQL Server performance for workloa…

DRAG DROP
You plan to run SQL Server Enterprise Edition by using an Azure virtual machine (VM).
You must configure the VM to run all SQL Server high volume workloads.
You need to optimize SQL Server performance for workloads that run on the new VM.
What should you do? To answer, drag the appropriate optimization technique to the correct configuration
option. Each optimization technique 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:


Page 5 of 21« First...34567...1020...Last »