Testking offers free demo for AZ-201 exam. "Microsoft Azure Developer Advanced Solutions", also known as AZ-201 exam, is a Microsoft Certification. This set of posts, Passing the Microsoft AZ-201 exam, will help you answer those questions. The AZ-201 Questions & Answers covers all the knowledge points of the real exam. 100% real Microsoft AZ-201 exams and revised by experts!

NEW QUESTION 1

You are developing a .NET Core MVC application for customers to research hotels. The application will use Azure Search. The application will search the index using various criteria to local domains to hotels. The index will include search fields for rate, a list of amenities, and distance to the nearest airport.
The application must support the following scenarios for specifying search criteria and organizing results:
• Search the index by using regular expressions.
• Organize results by counts for name-value pairs.
• List hotels within a specified distance to an airport and that fall within a specific price range. You need to configure the Search Para meters class.
Which properties should you configure? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.
AZ-201 dumps exhibit

  • A. Mastered
  • B. Not Mastered

Answer: A

Explanation:
AZ-201 dumps exhibit

NEW QUESTION 2

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution. Determine whether the solution meets the stated goals.
You need to meet the vendor notification requirement.
Solution: Configure notifications in the Azure API Management instance. Does the solution meet the goal?

  • A. Yes
  • B. No

Answer: B

Explanation:
Use a custom outbound Azure API Management policy. Scenario:
If a vendor is nearing the number of calls or bandwidth limit, the API must trigger email notifications to the vendor.
(API usage must not exceed 5,000 calls and 50,000 kilobytes of bandwidth per hour per vendor.)
References:
https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-policies

NEW QUESTION 3

You need to resolve a notification latency issue.
Which two actions should you perform? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point

  • A. Ensure that the Azure Function is using an App Service plan.
  • B. Set Always On to false
  • C. Ensure that the Azure Function is set to use a consumption plan.
  • D. Set Always On to true.

Answer: AD

Explanation:
Azure Functions can run on either a Consumption Plan or a dedicated App Service Plan. If you run in a dedicated mode, you need to turn on the Always On setting for your Function App to run properly. The Function runtime will go idle after a few minutes of inactivity, so only HTTP triggers will actually "wake up" your functions. This is similar to how WebJobs must have Always On enabled.
Scenario: Notification latency: Users report that anomaly detection emails can sometimes arrive several minutes after an anomaly is detected.
Anomaly detection service: You have an anomaly detection service that analyzes log information for anomalies. It is implemented as an Azure Machine Learning model. The model is deployed as a web service.
If an anomaly is detected, an Azure Function that emails administrators is called by using an HTTP WebHook. References:
https://github.com/Azure/Azure-Functions/wiki/Enable-Always-On-when-running-on-dedicated-App-Service-Pl

NEW QUESTION 4

You are developing an application that consists of an ASP.NET Core Web API website and a WebJob that starts automatically and runs continuously. You are building the deployment process for the application.
You need to ensure that both the website and the WebJob are deployed.
How should you structure the deployment folders? To answer, drag the appropriate path segments to the correct locations. Each path 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.
AZ-201 dumps exhibit

  • A. Mastered
  • B. Not Mastered

Answer: A

Explanation:
AZ-201 dumps exhibit

NEW QUESTION 5

You need to meet the scaling requirement for Policy Service. What should you store in Azure Redis Cache?

  • A. HttpContext.Items
  • B. ViewState
  • C. Session state
  • D. TempData

Answer: C

NEW QUESTION 6

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 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 use ASP.NET Core MVC with ADO.NET to develop an application. You implement database sharding for the application by using Azure SQL Database. You establish communication to implement a strategy that allows a group of operations that are performed on multiple Azure databases to be rolled back on all database if any of the operations fail.
Solution
• Create stored procedures in each Azure SQL database instance to perform operations for each respective database.
• Invoke a named transaction and use the same name for the transaction in each stored procedure.
• Establish a new transaction scope in a using block. Within the block, establish connections to each Azure SQL Database instance and run the stored procedure.
• If no exception occurs, commit the scoped transaction. Does the solution meet the goal?

  • A. Yes
  • B. No

Answer: B

NEW QUESTION 7

You host an on-premises ASP.NET Web API at the company headquarters. The Web API is consumed by applications running at the company's branch offices using the Azure Relay service. All the users of the applications are on the same Azure Active Directory (Azure AD).
You need to ensure that the applications can consume the Web API. What should you do?

  • A. Create separate Azure AD groups named Senders and Receiver
  • B. In Access Control (IAM) for the Relaynamespace, assign Senders the Reader role and assign Receivers the Reader role.
  • C. Create dedicated Azure AD identities named Sender and Receive
  • D. Assign Sender the Azure AD Identity Reader rol
  • E. Assign Receiver the Azure AD Identity Reader rol
  • F. Configure applications to use the respective identities.
  • G. Create a Shared Access policy for the namespac
  • H. Use a connection string in Web API and use a different connection string in consumer applications.
  • I. Create a Shared Access policy for Send permissions and another for Receive permissions.

Answer: C

Explanation:
To begin using Service Bus messaging entities in Azure, you must first create a namespace with a name that is unique across Azure. A namespace provides a scoping container for addressing Service Bus resources within your application.
When you publish an application through Azure Active Directory Application Proxy, you create an external URL for your users to go to when they're working remotely. This URL gets the default domain yourtenant.msappproxy.net.
References:
https://docs.microsoft.com/en-us/azure/active-directory/manage-apps/application-proxy-configure-custom-doma

NEW QUESTION 8

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique Determine whether the solution meets the stated goals.
You need to ensure that authentication events are triggered and processed according to the policy. Solution: Create separate Azure Event Grid topics and subscriptions for sign-in and sign-out events. Does the solution meet the goal?

  • A. Yes
  • B. No

Answer: B

NEW QUESTION 9

A construction company creates three-dimensional models from photographs and design diagrams of buildings. The company plans to store high-resolution photographs and blueprint files in Azure Blob Storage. The files are currently stored in the construction company’s office.
You are developing a tool to connect to Azure Storage, create container, and then upload the files. The tool must remain responsive to the end user while it is running and performing remote I/O operations. It must also wait for methods to complete before continuing.
You need to complete the configuration.
How should you complete the code? To answer, select the appropriate options in the answer area. NOTE: Each correct solution is worth one point.
AZ-201 dumps exhibit

  • A. Mastered
  • B. Not Mastered

Answer: A

Explanation:
Box 1: ProcessAsync();
Box 2: await cloudBlobContainer.CreatAsync();
If you specify that a method is an async method by using the async modifier, you enable the following two capabilities.
The marked async method can use await to designate suspension points. The await operator tells the compiler that the async method can't continue past that point until the awaited asynchronous process is complete. In the meantime, control returns to the caller of the async method.
The suspension of an async method at an await expression doesn't constitute an exit from the method, and finally blocks don’t run.
The marked async method can itself be awaited by methods that call it. References:
https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/async/

NEW QUESTION 10

You need to resolve the chatbot issue. What should you do?

  • A. Update the bot to store and retrieve state data.
  • B. Update the bot to overload the Dialog class constructor and invoke the root dialog.
  • C. Update the bot to pass native metadata to a channel in the Activity object's Channel Data property.
  • D. Use the Bot Framework Connector to send and receive activities.

Answer: A

NEW QUESTION 11

You are developing an ASP.NET Core Web API web service. The web service uses Azure Application Insights for all telemetry and dependency tracking. The web service reads and writes data to a database other than Microsoft SQL Server.
You need to ensure that dependency tracking works for calls to the third-party database.
Which two Dependency Telemetry properties should you store in the database? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.

  • A. Telemetry.Context.Operation.Id
  • B. Tetemetry.Context.Cloud.Rolelnstance
  • C. Telemetry.Id
  • D. Telemetry.ContextSession.Id
  • E. Telemetry.Name

Answer: BC

NEW QUESTION 12

You need to resolve the delivery API error. What should you do?

  • A. Implement simple retry by using the Enable Retry On Failure feature of Entity framework.
  • B. Implement exponential back off by using the EnableRetryOnFailure feature of Entity Framework,
  • C. Implement the Circuit Breaker pattern by using the Enable Retry On Failure feature of Entity Framework.
  • D. Invoke accustom execution strategy in Entity Framework.

Answer: A

NEW QUESTION 13

You develop a bot by using Language Understanding Intelligence Service (LUIS) and the .NET Bot framework. You use LUIS in the Azure portal to optimize the bot.
You review the utterances and determine that users are requesting time and venue information for events. You need to improve the prediction efficiency of the bot.
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.
NOTE: Each correct selection is worth one point.
AZ-201 dumps exhibit

  • A. Mastered
  • B. Not Mastered

Answer: A

Explanation:
Step 1: Create an intent for each event type Identify your intents
Step 2: Add example utterances
Create example utterances for each intent Step 3: Create a List Entity
Identify your entities
A list entity is an explicitly specified list of values. Each value consists of one or more synonyms. In a travel app, you might choose to create a list entity to represent airport names.
References:
https://docs.microsoft.com/en-us/azure/cognitive-services/luis/luis-how-plan-your-app

NEW QUESTION 14

You need to debug the user greeting issue. What should you use?

  • A. Bot Framework Channel Inspector
  • B. Bot Connector service
  • C. Azure Compute Emulator
  • D. Azure Application Insights
  • E. Bot Framework Emulator

Answer: E

Explanation:
Scenario: The chatbot’s greeting does not show the user’s name. You need to debug the chatbot locally. Debug your bot using an integrated development environment (IDE) such as Visual Studio or Visual Studio
Code and the Bot Framework Emulator. You can use these methods to debug any bot locally.
References:
https://docs.microsoft.com/en-us/azure/bot-service/bot-service-debug-bot?view=azure-bot-service-4.0

NEW QUESTION 15

You are developing an Azure Function that will be triggered using a webhook from an external application. The Azure Function will receive JSON data in the body of the request.
Calling applications send an account ID as part of the URL. The number at the end of the URL is an integer. The format for the URL resembles the following: /api/account/1
The Azure Function must accept all incoming requests without requiring keys or tokens. You need to complete the attributes for the Azure Function.
How should you complete the code? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.
AZ-201 dumps exhibit
AZ-201 dumps exhibit
AZ-201 dumps exhibit

  • A. Mastered
  • B. Not Mastered

Answer: A

Explanation:
AZ-201 dumps exhibit

NEW QUESTION 16

You are developing an IoT solution. The solution requires bidirectional communication between a .NET application and Azure IoT Hub.
You need to obtain connection information for a single test device.
Which three commands should you use to develop the solution? To answer, move the appropriate commands from the list of commands to the answer area and arrange them in the correct order.
NOTE: Each correct selection is worth one point.
AZ-201 dumps exhibit

  • A. Mastered
  • B. Not Mastered

Answer: A

Explanation:
Run the following command in the command-line environment where you are using the Azure CLI to install the IoT extension:
Step 1: az extension add
--name <iot-extension-name>
Run the following command in the command-line environment where you are using the Azure CLI to install the IoT extension:
az extension add --name azure-cli-iot-ext Step 2: az iot hub device-identity create
--hub-name <iot-hub-name>
--device-id <device-id>
Create a new device in the IoT Hub “DemoHub”
Command: az iot hub device-identity create --hub-name DemoHub --device-id testDevice Step 3: az iot hub device-identity show-connection-string
--hub-name { iot-hub-name }
--device-id <device-id> References:
https://github.com/MicrosoftDocs/azure-docs/blob/master/includes/iot-hub-get-started-create-device-identity.md

NEW QUESTION 17

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution. Determine whether the solution meets the stated goals.
You need to ensure that authentication events are triggered and processed according to the policy.
Solution: Ensure that sign out events have a subject prefix. Create an Azure Event Grid subscription that uses the subject Begins With filter.
Does the solution meet the goal?

  • A. Yes
  • B. No

Answer: A

NEW QUESTION 18

You need to update the Inventory API.
Which development tools should you use? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.
AZ-201 dumps exhibit

  • A. Mastered
  • B. Not Mastered

Answer: A

Explanation:
Scenario: The Inventory API must be written by using ASP.NET Core and Node.js. Box 1: Entity Framework Core
Box 2: Code first References:
https://docs.microsoft.com/en-us/aspnet/mvc/overview/getting-started/getting-started-with-ef-using-mvc/creatin

NEW QUESTION 19

You are developing an online order website that uses Azure Durable Functions- You develop the following processes for the website:
AZ-201 dumps exhibit
You need to identity what types of functions to use for each step of the process.
Which function types should you use? To answer, drag the appropriate function types to the correct operations. Each function 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.
You need to identify what types of functions to use for each step of the process.
Which function types should you use? To answer, drag the appropriate function types to the correct operations. Each function 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.
AZ-201 dumps exhibit

  • A. Mastered
  • B. Not Mastered

Answer: A

Explanation:
AZ-201 dumps exhibit

NEW QUESTION 20

Member of the finance department for a company review and make changes to a Microsoft Excel workbook that is hosted on OneDrive. The workbook contains projected costs and revenue for a project.
You need to develop an Azure Function that ingests data from the modified workbook and place it into a Microsoft Word document.
Which two objects should you implement? Each correct answer presents part of the solution. NOTE: Each connect selection is worth one point.

  • A. An Excel table input binding
  • B. An auth token input binding
  • C. An Excel table output binding
  • D. A group subscription
  • E. A group conversation subscription

Answer: AD

Explanation:
Azure Functions supports trigger, input, and output bindings for external files. These bindings create API connections to SaaS providers, or use existing API connections from your Function App's resource group.
References:
https://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-external-file

NEW QUESTION 21

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution. Determine whether the solution meets the stated goals.
You need to meet the vendor notification requirement
Solution: Update the Delivery API to send emails by using a cloud based email service.
Does the solution meet the goal?

  • A. Yes
  • B. No

Answer: B

NEW QUESTION 22

A company is developing a solution that allows smart refrigerators to send temperature information to a central location.
The solution must receive and store messages until they can be processed. You create an Azure Service Bus instance by providing a name, pricing tier, subscription, resource group, and location.
You need to complete the configuration.
Which Azure CLI on PowerShell command should you run?
A)
AZ-201 dumps exhibit
B)
AZ-201 dumps exhibit
C)
AZ-201 dumps exhibit
D)
AZ-201 dumps exhibit

  • A. Option A
  • B. Option B
  • C. Option C
  • D. Option D

Answer: D

NEW QUESTION 23

You need to resolve the language processing issue.
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.
AZ-201 dumps exhibit

  • A. Mastered
  • B. Not Mastered

Answer: A

Explanation:
AZ-201 dumps exhibit

NEW QUESTION 24
......

P.S. Easily pass AZ-201 Exam with 69 Q&As Passcertsure Dumps & pdf Version, Welcome to Download the Newest Passcertsure AZ-201 Dumps: https://www.passcertsure.com/AZ-201-test/ (69 New Questions)