Free Microsoft AI-102 Exam Actual Questions

The questions for AI-102 were last updated On Nov 7, 2024

Question No. 1

You have data saved in the following format.

Which format was used?

Show Answer Hide Answer
Correct Answer: A

Question No. 2

You have receipts that are accessible from a URL.

You need to extract data from the receipts by using Form Recognizer and the SDK. The solution must use a prebuilt model.

Which client and method should you use?

Show Answer Hide Answer
Correct Answer: D

To analyze receipts from a URL, use the StartRecognizeReceiptsFromUri method

Example code:

private static async Task AnalyzeReceipt(

FormRecognizerClient recognizerClient, string receiptUri)

{

RecognizedFormCollection receipts = await recognizerClient.StartRecognizeReceiptsFromUri(new Uri(receiptUrl)).WaitForCompletionAsync();


https://docs.microsoft.com/en-us/azure/applied-ai-services/form-recognizer/quickstarts/client-library

Question No. 3

You are building a Chatbot by using the Microsoft Bot Framework SDK. The bot will be used to accept food orders from customers and allow the customers to customize each food item. You need to configure the bot to ask the user for additional input based on the type of item ordered. The solution must minimize development effort. Which two types of dialogs should you use? Each correct answer presents part of the solution. NOTE: Each correct selection is worth one point.

Show Answer Hide Answer
Correct Answer: B, C

Question No. 4

You deploy a web app that is used as a management portal for indexing in Azure Cognitive Search. The app is configured to use the primary admin key.

During a security review, you discover unauthorized changes to the search index. You suspect that the primary access key is compromised.

You need to prevent unauthorized access to the index management endpoint. The solution must minimize downtime.

What should you do next?

Show Answer Hide Answer
Correct Answer: C

Question No. 5

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 have a chatbot that uses question answering in Azure Cognitive Service for Language

Users report that the responses of the chatbot lack formality when answering spurious questions

You need to ensure that the chatbot provides formal responses to spurious questions.

Solution: From Language Studio, you change the chitchat source to qna_chitchat_professional.tsv. and then retrain and republish the model.

Does this meet the goal?

Show Answer Hide Answer
Correct Answer: B