Microsoft AZ-202 Testing Engine 2021

Master the AZ-202 Microsoft Azure Developer Certification Transition content and be ready for exam day success quickly with this Examcollection AZ-202 download. We guarantee it!We make it a reality and give you real AZ-202 questions in our Microsoft AZ-202 braindumps.Latest 100% VALID Microsoft AZ-202 Exam Questions Dumps at below page. You can use our Microsoft AZ-202 braindumps and pass your exam.

NEW QUESTION 1

A company is implementing a publish- subscribe (Pub/Sub) messaging component by using Azure Service Bus. You are developing the first subscription application.
In the Azure portal you are see that messages are being sent to the subscription for each topic. You create a subscription client object by supplying the correct details, but the subscription application is still not consuming the messages.
You need to complete the source code of the subscription client. What should you do?
A)
AZ-202 dumps exhibit
B)
AZ-202 dumps exhibit
C)
AZ-202 dumps exhibit
D)
AZ-202 dumps exhibit

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

Answer: A

NEW QUESTION 2

You are developing an Azure web application to store and archive patient medical records in Azure. You need to configure data storage to meet the following policies:
• Ensure that you can configure a retention period for patient records.
• Archived data must be readable.
• Archived data must not be modified or deleted. Which Azure storage service should you use?

  • A. Azure files
  • B. Azure Blobs
  • C. Azure Queues
  • D. Azure Tables

Answer: C

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

Note: This question is part of a series of questions that present the same solution. Each question in the series contains a unique solution. Determine whether the meets the stated goals.
You connect to Azure by using a workstation that has a slow internet connection. You have two Azure file shares. You plan to transfer a series of large files from one container to another container. The workstation does not have sufficient disk space to store the files.
You define the following variables in Azure PowerShell:
AZ-202 dumps exhibit
You need to simultaneously transfer the large files as efficiently as possible. Solution: Run the following Azure PowerShell command:
AZ-202 dumps exhibit
Does the solution meet the goal?

  • A. Yes
  • B. No

Answer: B

NEW QUESTION 5

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.
AZ-202 dumps exhibit
AZ-202 dumps exhibit

  • A. Mastered
  • B. Not Mastered

Answer: A

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 6

You need to implement the Log policy.
How should you complete the Azure Event Grid subscription? To answer, drag the appropriate JSON segments to the correct locations. Each (SON 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-202 dumps exhibit

  • A. Mastered
  • B. Not Mastered

Answer: A

Explanation:
Box 1:WebHook
Scenario: If an anomaly is detected, an Azure Function that emails administrators is called by using an HTTP
WebHook.
endpointType: The type of endpoint for the subscription (webhook/HTTP, Event Hub, or queue). Box 2: SubjectBeginsWith
Box 3: Microsoft.Storage.BlobCreated Scenario: Log Policy
All Azure App Service Web Apps must write logs to Azure Blob storage. All log files should be saved to a container named logdrop. Logs must remain in the container for 15 days.
Example subscription schema
{
"properties": { "destination": {
"endpointType": "webhook", "properties": {
"endpointUrl": "https://example.azurewebsites.net/api/HttpTriggerCSharp1?code=VXbGWce53l48Mt8wuotr0GPmyJ/nDT4hgd
}
},
"filter": {
"includedEventTypes": [ "Microsoft.Storage.BlobCreated", "Microsoft.Storage.BlobDeleted" ], "subjectBeginsWith": "blobServices/default/containers/mycontainer/log",
"subjectEndsWith": ".jpg", "isSubjectCaseSensitive ": "true"
}
}
}
References:
https://docs.microsoft.com/en-us/azure/event-grid/subscription-creation-schema

NEW QUESTION 7

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 LabelMaker application security requirement.
Solution: Create a Microsoft Azure Active Directory service principal and assign it to the Azure Kubernetes Service (AKS) cluster.
Does the solution meet the goal?

  • A. Yes
  • B. No

Answer: A

NEW QUESTION 8

You are developing a speech-enabled home automation control bot. The bot interprets some spoken words incorrectly. You need to improve the spoken word recognition for the bot. What should you implement?

  • A. The Skype for Business Channel and use scorable dialogs for improving conversation flow
  • B. The Skype for Business Channel and Speech priming using a LUIS app
  • C. The Web Chat Channel and use scorable dialogue for improving conversation flow.
  • D. The Web Chat Channel and Speech priming using a Bing Speech Service and LUIS app

Answer: A

Explanation:
Speech priming improves the recognition of spoken words and phrases that are commonly used in your bot. For speech-enabled bots that use the Web Chat and Cortana channels, speech priming uses examples specified in Language Understanding (LUIS) apps to improve speech recognition accuracy for important words.
References:
https://docs.microsoft.com/en-us/azure/bot-service/bot-service-manage-speech-priming?view=azure-bot-service

NEW QUESTION 9

A company is developing a software as a service (SaaS) solution in Azure for other business to manage customers. The solution includes the following Azure SQL Database instances. Customer data exists in all databases.
AZ-202 dumps exhibit
Customers may request that the company remove data that relates to the customer. If a customer makes a deletion request, all details from the customer must be removed from the solution. All deletions for a customer must occur in one distributed transaction that includes the CRM, ERP, and Marketing databases.
You need to activate support for transactions over multiple databases on the same logical server and activate support for transactions over multiple servers.
Which actions and Azure PowerShell command should you use? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
AZ-202 dumps exhibit

  • A. Mastered
  • B. Not Mastered

Answer: A

Explanation:
Box 1: Use a transaction scope
The TransactionScope class establishes an ambient transaction in .NET. (An “ambient transaction” is one that lives in the current thread.) All connections opened within the TransactionScope participate in the transaction. If different databases participate, the transaction is automatically elevated to a distributed transaction.
Box 2: New-AzureRmSqlServerCommunicationLink
New-AzureRmSqlServerCommunicationLink: Use this cmdlet to create a new communication relationship between two logical servers in Azure SQL DB. The relationship is symmetric which means both servers can initiate transactions with the other server.
References:
https://docs.microsoft.com/en-us/azure/sql-database/sql-database-elastic-transactions-overview

NEW QUESTION 10

You need to ensure disaster recovery requirements are met. What code should you add at line PC16?
To answer, drag the appropriate code fragments to the correct locations. Each code fragment 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-202 dumps exhibit

  • A. Mastered
  • B. Not Mastered

Answer: A

Explanation:
AZ-202 dumps exhibit

NEW QUESTION 11

You use Azure Table storage to store customer information for an application. The data contains customer details and is partitioned by last name. You need to create a query that returns all customers with the last name Smith. Which code segment should you use?

  • A. TableQuery.GeneratePilterCondition("LastName", QueryComparisons.Equal, "Smith")
  • B. TableQuery.GeneratefilterCondition("PartitionKey", QueryComparison
  • C. Equal, "Smith")
  • D. TableQue.GenerateFilterCondition("PartitionKey", Equals, "Smith")
  • E. TableQuer
  • F. GenerateFilterCondition("LastName", Equals, "Smith")

Answer: D

NEW QUESTION 12

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-202 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 13

You are creating a collaborative image hosting platform as an ASP.NET MVC web application. Users add, update, and modify images on the platform. Images are stored in Azure Blob storage.
More than one user at a time must be able to modify the same image. You need to implement optimistic concurrency for uploading images.
Which four 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 solution is worth one point.
AZ-202 dumps exhibit

  • A. Mastered
  • B. Not Mastered

Answer: A

Explanation:
Optimistic concurrency means allowing concurrency conflicts to happen, and then reacting appropriately if they do.
For the PUT method, If-Match can be used to prevent the lost update problem. It can check if the modification of a resource that the user wants to upload will not override another change that has been done since the original resource was fetched. If the request cannot be fulfilled, the 412 (Precondition Failed) response is returned.
References:
https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/If-Match

NEW QUESTION 14

You are developing an ASP.NET web application that you will deploy to Azure. The solution must meet the following requirements:
• Store user session state by using only serializable data types.
• Provide customizable caching of session data.
• Support scaling out the number of web hosts.
• Maximize performance.
Which solution meets these requirements?

  • A. Clustered Azure Redis Cache
  • B. SQL Server session state provider
  • C. in memory session state provider
  • D. ASP .NET Output Cache provider for Azure Redis Cache

Answer: B

NEW QUESTION 15

You are creating a script that will run a large workload on an Azure Batch pool. Resources will be reused and do not need to be cleaned up after use.
You have the following parameters:
AZ-202 dumps exhibit
You need to write an Azure CU script that will create the jobs, tasks, and the pool.
In which order should you arrange the commands to develop the solution? To answer, Move the appropriate commands from the list of command segments to the answer area and arrange them in the correct order.
AZ-202 dumps exhibit

  • A. Mastered
  • B. Not Mastered

Answer: A

Explanation:
AZ-202 dumps exhibit

NEW QUESTION 16

Note: This question is part of a series of questions that present the same scenario solution meets the stated goals.
You have the following resource groups:
AZ-202 dumps exhibit
Developers must connect to DevServer only through DevWorkstation. To maintain security, DevServer must not accept connections from the internet
You need to create a private connection between the DevWorkstation and DevServer.
Solution: Configure a public IP address on DevServer_WestCentral. Configure the Network Security Group to allow all incoming ports.
Does the solution meet the goal?

  • A. Yes
  • B. No

Answer: B

NEW QUESTION 17

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 18

Your company's Internet Information Services (IIS) web server for Windows Server hosts legacy hosts legacy ASP.NET web apps. The applications do not use the Application freights SDK or APIs.
You install Application Insights on the Windows server running IE. You must use the Application Insights SDK to monitor the legacy web apps. You need to collect information about the legacy web apps. Which data class can you monitor?

  • A. Dependencies
  • B. Session
  • C. Stack Dump
  • D. Client Context

Answer: A

NEW QUESTION 19

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 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.
Margie’s Travel is an international travel and bookings management service. The company is expanding into restaurant bookings. You are tasked with implementing Azure Search for the restaurants listed in their solution.
You create the index in Azure Search.
You need to import the restaurant data into the Azure Search service by using the Azure Search .NET SDK. Solution:
1. Create a SearchServiceClient object to connect to the search index.
2. Create an IndexBatch that contains the documents which must be added.
3. Create a DataSource instance and set its Container property to the DataContainer.
4. Call the Documentsindex method of the SearchlndexClient to send the IndexBatch to the search index. Does the solution meet the goal?

  • A. No
  • B. Yes

Answer: A

NEW QUESTION 20

You are developing a mobile instant messaging app for a company. The mobile app must meet the following requirements:
• Support offline data sync.
• Update the latest messages during normal sync cycles. You need to implement Offline Data Sync.
Which two actions should you perform? Each conn I answer presents part of the solution. NOTE: Each correct selection is worth one point.

  • A. Retrieve records from Offline Data Sync on every call to the PullAsync method.
  • B. Retrieve records from Offline Data Sync using an Incremental Sync.
  • C. Push records to Offline Data Sync using an Incremental Sync.
  • D. Return the updatedAt column from the Mobile Service Backend and implement sorting by using the column.
  • E. Return the updatedAt column from the Mobile Service Backend and implement sorting by the message id.

Answer: BD

NEW QUESTION 21

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
AZ-202 dumps exhibit

  • A. Mastered
  • B. Not Mastered

Answer: A

Explanation:
AZ-202 dumps exhibit

NEW QUESTION 22

You need to implement the purchase requirement. What should you do?

  • A. Use the Bot FrameworkREST API attachment operations to send the user's voice and the Speech Service API to recognize intents.
  • B. Use the Direct line REST API to send the user's voice and the Speech Service API to recognize intents.
  • C. Use the Speech Service API to send the user's voice and the Bot Framework REST API conversation operations to recognize intents.
  • D. Use the Bot Framework REST API conversation operations to send the user's voice and the Speech Service API to recognize intents.

Answer: D

Explanation:
Scenario: Enable users to place an order for delivery or pickup by using their voice.
You must develop a chatbot by using the Bot Builder SDK and Language Understanding Intelligence Service (LUIS). The chatbot must allow users to order food for pickup or delivery.
The Bot Framework REST APIs enable you to build bots that exchange messages with channels configured in the Bot Framework Portal, store and retrieve state data, and connect your own client applications to your bots. All Bot Framework services use industry-standard REST and JSON over HTTPS.
The Speech Service API is used to recognize intents. References:
https://docs.microsoft.com/en-us/azure/bot-service/rest-api/bot-framework-rest-connector-concepts?view=azure- https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/how-to-recognize-intents-from-speech

NEW QUESTION 23
......

100% Valid and Newest Version AZ-202 Questions & Answers shared by Certifytools, Get Full Dumps HERE: https://www.certifytools.com/AZ-202-exam.html (New 150 Q&As)