Your success in is our sole target and we develop all our in a way that facilitates the attainment of this target. Not only is our material the best you can find, it is also the most detailed and the most updated. for Microsoft AZ-202 are written to the highest standards of technical accuracy.
Check AZ-202 free dumps before getting the full version:
NEW QUESTION 1
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.
Answer:
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 2
You are developing an Azure loT Hub Device Provisioning Service as a helper service. You configure zero
-touch device provisioning to an lot Hub. All devices are exactly. You need to configure auto-provisioning for millions of devices in a secure and scalable manner with group enrollment and roles. What should you use? To
answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.
Answer:
Explanation:
NEW QUESTION 3
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.
Answer:
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 4
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 have the following resource groups:
Developers must conned to DevServer only through DevWorkstation. To maintain security, DevServer must not accept connections (rom the internet.
You need to create a private connection between the DevWorkstation and DevServer.
Solution: Configure a VNet-to-VNet VPN connection between the two private Virtual Networks using VPN gati allow connectivity between the DevServer and the DevWorkstation using their private IP addresses.
Does the solution meet the goal?
Answer: B
NEW QUESTION 5
An application that you manage has several web front-end instances- Each web front end communicates with a set of back-end worker processes by using an Azure queue.
You are developing code for the worker processes.
You have a function named DoWork() that handles data processing tasks.
You need to develop code for the worker processes that meets the following requirements:
• Properly access an item from the queue and be resistant to failure.
• Run on multiple background processes.
•Ensure that items are available to other workers two minutes after a worker process fails.
• Ensure that messages regarding failed processes are logged to the console.
How should you complete the code? To answer, select the appropriate options in the answer area. NOTE: Each connect selection its worth one point
Answer:
Explanation:
NEW QUESTION 6
You need to add code at line EG15 in EventGridController.cs to ensure that the Log policy applies to all services.
How should you complete the code? To answer, drag the appropriate code segments to the correct locations. Each code 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.
Answer:
Explanation: Box 1: Status
Box 2: Succeded
Box 3: operationName Scenario: Policy service
You develop and deploy a stateful ASP.NET Core 2.1 web application named Policy service to an Azure App Service Web App. The application reacts to events from Azure Event Grid and performs policy actions based on those events.
The application must include the Event Grid Event ID field in all Application Insights telemetry.
NEW QUESTION 7
You are expanding an existing on-premises application to connect to several applications in the cloud. You have the following requirements:
• Automate various business processes and send data to multiple SaaS and
• Use workflows and a publish-subscribe model
• Prohibit changes to the on-premises application You need to create a solution.
What should you use?
Answer: C
NEW QUESTION 8
You manage a web application that is hosted in multiple Azure regions. The application uses Azure Append blobs to store audit logs. Each hosted instance of the application maintains its own audit logs.
You have a central Append blob that serves as a master record of all audit logs. The master audit log is updated on a schedule to include all local copies from each region. The local copies are then discarded.
You need to append each of the local audit logs to the master audit log. Which method should you use?
Answer: B
NEW QUESTION 9
You are developing an SMS-based testing solution. The solution sends users a question by using SMS. Early responders may qualify for prizes.
Users must respond with an answer choice within 90 seconds. You must be able to track how long it takes each user to respond.
You create a durable Azure Function named SendSmsQuizQuestion that uses Twilio to send messages. You need to write the code for MessageQuiz.
How should you complete the code? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.
Answer:
Explanation: Box 1: DateTime expiration = context.CurrentUtcDateTime.AddSeconds(90);
The user has 90 seconds to respond with the code they received in the SMS message. Box 2:var timeoutTask = context.CreateTimer(expiration, cts.Token);
Create a timer.
Box 3: if(!timeoutTask.IsCompleted)
All pending timers must be complete or canceled before the function exits. References:
https://github.com/Azure/azure-functions-durable-extension/blob/master/samples/precompiled/PhoneVerificatio
NEW QUESTION 10
A company sells products worldwide and provides customer service in many languages. The company has a customer service email address for customer requests. The language the email is written in needs to be recognized and routed to the appropriate local language department. You need to use the appropriate cognitive service to detect the language of the email. How should you initiate language detection?
Answer: B
Explanation: The DetectLanguageAsync(String) method detects the language of a text. References:
https://docs.microsoft.com/en-us/dotnet/api/microsoft.toolkit.services.microsofttranslator.translatorservice.detec
NEW QUESTION 11
You need to configure retries in the LoadUserDetails function in the Database class without impacting user experience.
What code should you insert on line DB07?
To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.
Answer:
Explanation: Box 1: Policy
RetryPolicy retry = Policy Handle<HttpRequestException>() Retry(3);
The above example will create a retry policy which will retry up to three times if an action fails with an exception handled by the Policy.
Box 2: WaitAndRetryAsync(3,i => TimeSpan.FromMilliseconds(100* Math.Pow(2,i-1)));
A common retry strategy is exponential backoff: this allows for retries to be made initially quickly, but then at progressively longer intervals, to avoid hitting a subsystem with repeated frequent calls if the subsystem may be struggling.
Example: Policy
Handle<SomeExceptionType>() WaitAndRetry(3, retryAttempt =>
TimeSpan.FromSeconds(Math.Pow(2, retryAttempt))
);
References:
https://github.com/App-vNext/Polly/wiki/Retry
NEW QUESTION 12
You develop software solutions for a media services company. You plan to analyze a collection of video files by using Azure Video Indexer.
You need to only generate audio transcripts from the files, as quickly as possible, without incurring extra costs.
To which value should you set the Azure Video Indexer streammgPreset option?
Answer: C
NEW QUESTION 13
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: Create a new Azure Event Grid subscription for all authentication that delivers messages to an Azure Event Hub. Use the subscription to process signout events.
Does the solution meet the goal?
Answer: B
Explanation: Use a separate Azure Event Grid topics and subscriptions for sign-in and sign-out events.
Scenario: Authentication events are used to monitor users signing in and signing out. All authentication events must be processed by Policy service. Sign outs must be processed as quickly as possible.
NEW QUESTION 14
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.
Answer: BC
NEW QUESTION 15
A company is developing a new website that uses Azure Cosmos DB for data storage. You need to implement a method to retrieve one item by identifier.
The method must run as efficiently as possible.
How should you complete the code segment? To answer, select the appropriate options in the answer area, NOTE: Each correct selection is worth one point.
Answer:
Explanation:
NEW QUESTION 16
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 the SecurityPin security requirements are met.
Solution: Enable Always Encrypted for the SecurityPin column using a certificate contained in Azure Key Vault and grant the WebAppIdentity service principal access to the certificate.
Does the solution meet the goal?
Answer: A
100% Valid and Newest Version AZ-202 Questions & Answers shared by Certleader, Get Full Dumps HERE: https://www.certleader.com/AZ-202-dumps.html (New 150 Q&As)