00:00

QUESTION 51

- (Topic 3)
You build a custom Form Recognizer model.
You receive sample files to use for training the model as shown in the following table.
AI-102 dumps exhibit
Which three files can you use to train the model? Each correct answer presents a complete solution. (Choose three.)
NOTE: Each correct selection is worth one point.

Correct Answer: ACF
Input requirements
Form Recognizer works on input documents that meet these requirements:
Format must be JPG, PNG, PDF (text or scanned), or TIFF. Text-embedded PDFs are best because there's no possibility of error in character extraction and location.
File size must be less than 50 MB.
Reference:
https://docs.microsoft.com/en-us/azure/cognitive-services/form-recognizer/overview

QUESTION 52

- (Topic 3)
You build a bot by using the Microsoft Bot Framework SDK and the Azure Bot Service.
You plan to deploy the bot to Azure.
You register the bot by using the Bot Channels Registration service.
Which two values are required to complete the deployment? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.

Correct Answer: CE
Reference:
https://github.com/MicrosoftDocs/bot-docs/blob/live/articles/bot-service-quickstart- registration.md

QUESTION 53

HOTSPOT - (Topic 3)
For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.
AI-102 dumps exhibit
Solution:
AI-102 dumps exhibit

Does this meet the goal?

Correct Answer: A

QUESTION 54

- (Topic 3)
You are building a chatbot by using the Microsoft Bot Framework Composer as shown in the exhibit. (Click the Exhibit tab.)
AI-102 dumps exhibit
The chatbot contains a dialog named GetUserDetails. GetUserDetails contains a TextInput control that prompts users for their name.
The user input will be stored in a property named name.
You need to ensure that you can dispose of the property when the last active dialog ends. Which scope should you assign to name?

Correct Answer: A
The dialog scope associates properties with the active dialog. Properties in the dialog scope are retained until the dialog ends.
Reference:
https://docs.microsoft.com/en-us/composer/concept-memory?tabs=v2x

QUESTION 55

- (Topic 2)
You are developing the chatbot.
You create the following components:
* A QnA Maker resource
* A chatbot by using the Azure Bot Framework SDK.
You need to integrate the components to meet the chatbot requirements. Which property should you use?

Correct Answer: D
Scenario: When the response confidence score is low, ensure that the chatbot can provide other response options to the customers.
When no good match is found by the ranker, the confidence score of 0.0 or "None" is returned and the default response is "No good match found in the KB". You can override this default response in the bot or application code calling the endpoint. Alternately, you can also set the override response in Azure and this changes the default for all knowledge bases deployed in a particular QnA Maker service.
Choosing Ranker type: By default, QnA Maker searches through questions and answers. If you want to search through questions only, to generate an answer, use the RankerType=QuestionOnly in the POST body of the GenerateAnswer request.
Reference:
https://docs.microsoft.com/en-us/azure/cognitive-services/qnamaker/concepts/best- practices