Microsoft 70-532 Actual Free Exam Questions & Community Discussion

  • Exam Code/Number: 70-532
  • Exam Name/Title: Developing Microsoft Azure Solutions
  • Certification Provider: Microsoft
  • Corresponding Certification: Microsoft Azure Developer Specialist
  • Exam Questions: 327
  • Updated On: Sep 14, 2026
You are designing a Windows Azure application.
The application includes two web roles and three instances of a worker role. The web roles will send requests to the worker role through one or more Windows Azure Queues.
You have the following requirements:
You need to recommend a queue design for sending requests to the worker role.
What should you recommend?
Correct Answer: A Vote an answer
You need to implement tracing for the website after the website is deployed.
Which code segment should you insert at line CF13?
Correct Answer: C Vote an answer
Explanation: Only visible for EduDump members. You can sign-up / login (it's free).
A company wants to implement an internal virtualized infrastructure to provide its employees with on demand storage which will be the accessible through a web interface over the public Internet. This is an example of which of the following?
Correct Answer: C Vote an answer
Explanation: Only visible for EduDump members. You can sign-up / login (it's free).
DRAG DROP
You need to add code at line CA17 to ensure that third party licenses are handled correctly when a case is closed.
How should you complete the code segment?
Correct Answer:
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You are developing an ASP.NET Core Web API service that stores product listings in Cosmos DB in SQL mode.
Properties such as average monthly profit are as materialized properties on the listing. All materialized properties are computed using properties on the listing.
The service inserts product listings without materialized property values.
You need to ensure that materialized property values are always calculated and saved.
Solution: Write an Azure Function to build the materialized properties and trigger it from Cosmos DB.
Does the solution meet the goal?
Correct Answer: A Vote an answer
DRAG DROP
You have six Ubuntu Linux virtual machines (VMS) that run a Hadoop cluster on Azure. One of the VMs hosts a custom web user interface that allows users to examine the processing jobs within the Hadoop Cluster.
You need to select the appropriate Azure Storage type for each Azure VM scenario.
Which Azure Storage types should you use? To answer, drag the appropriate Azure Storage type to the correct target. Each Azure Storage type 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.
NOTE: Each correct selection is worth one point.
Correct Answer:
DRAG DROP
You are developing a commercial REST API by using Azure API Management. Access to the API is managed by subscription, which can represent applications over a wide geographic area.
You receive several issue reports.
You need to configure policies to address these issues.
How should you complete the XML markup? To answer, drag the appropriate XML segments to the correct locations. Each XML segment 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.
NOTE: Each correct selection is worth one point.
Correct Answer:

Box 1: rate-limit-by-key
Box 2: counter-key
Box 3: @(context.Subscription.ID)
Limit call rate by key
The rate-limit-by-key policy prevents API usage spikes on a per key basis by limiting the call rate to a specified number per a specified time period. The key can have an arbitrary string value and is typically provided using a policy expression. Optional increment condition can be added to specify which requests should be counted towards the limit. When this policy is triggered the caller receives a 429 Too Many Requests response status code.
Syntax: <rate-limit-by-key calls="number"
renewal-period="seconds"
increment-condition="condition"
counter-key="key value" />
Example
In the following example, the rate limit is keyed by the caller IP address.
<policies>
<inbound>
<base />
<rate-limit-by-key calls="10"
renewal-period="60"
increment-condition="@(context.Response.StatusCode == 200)"
counter-key="@(context.Request.IpAddress)"/>
</inbound>
<outbound>
<base />
</outbound>
</policies>
Box 4: cors
The cors policy adds cross-origin resource sharing (CORS) support to an operation or an API to allow cross- domain calls from browser-based clients.
CORS allows a browser and a server to interact and determine whether or not to allow specific cross-origin requests (i.e. XMLHttpRequests calls made from JavaScript on a web page to other domains). This allows for more flexibility than only allowing same-origin requests, but is more secure than allowing all cross-origin requests.
Box 5: @(context.Subscription.ID)
Forward context information to the backend service
This example shows how to apply policy at the API level to supply context information to the backend service.
<!-- Copy this snippet into the inbound element to forward some context information, user id and the region the gateway is hosted in, to the backend service for logging or evaluation -->
<set-header name="x-request-context-data" exists-action="override">
<value>@(context.User.Id)</value>
<value>@(context.Deployment.Region)</value>
</set-header>
From what you know about SQL Database architecture, what should you include in your client application code? (Choose three)
Correct Answer: B,C,D Vote an answer
You deploy an application as a cloud service in Azure.
The application consists of five instances of a web role.
You need to move the web role instances to a different subnet.
Which file should you update?
Correct Answer: C Vote an answer
Cloud computing relies heavily on which of the following virtualization characteristics? (Select two.)
Correct Answer: B,D Vote an answer
Explanation: Only visible for EduDump members. You can sign-up / login (it's free).
You are developing a messaging solution to integrate two applications named WeatherSummary and WeatherDetails. The WeatherSummary application displays a summary of weather information for major cities.
The WeatherDetails application displays weather details for a specific city.
You need to ensure that the WeatherDetails application displays the weather details for the city that the user selects in the WeatherSummary application.
What should you do?
Correct Answer: D Vote an answer
0
0
0
10