AI-102 Exam QuestionsBrowse all questions from this exam

AI-102 Exam - Question 200


HOTSPOT

-

You have an Azure subscription that contains an Azure AI Document Intelligence resource named DI1.

You build an app named App1 that analyzes PDF files for handwritten content by using DI1.

You need to ensure that App1 will recognize the handwritten content.

How should you complete the code? To answer, select the appropriate options in the answer area.

Show Answer
Correct Answer:

Discussion

8 comments
Sign in to comment
Mehe323
Mar 28, 2024

The first answer should be read: Read OCR - Extract print and handwritten text including words, locations, and detected languages. https://learn.microsoft.com/en-us/azure/ai-services/document-intelligence/concept-model-overview?view=doc-intel-4.0.0

AlviraTony
Mar 24, 2024

Prebuilt-read is correct which can classify the test extracted as handwrittern or printed

audlindr
Feb 29, 2024

Reference: https://learn.microsoft.com/en-us/dotnet/api/overview/azure/ai.formrecognizer-readme?view=azure-dotnet#use-the-prebuilt-general-document-model

Harry300
Mar 2, 2024

why document and not the read model? the code appears in both examples on that website

Mehe323
Mar 28, 2024

It is read: Read OCR - Extract print and handwritten text including words, locations, and detected languages. https://learn.microsoft.com/en-us/azure/ai-services/document-intelligence/concept-read?view=doc-intel-4.0.0

Murtuza
Apr 8, 2024

The given answers by exam topics is CORRECT

reiwanotora
May 26, 2024

1. "prebuilt-document" 2. 0.75

krzkrzkra
Jul 14, 2024

1. "prebuilt-document" 2. 0.75

Murtuza
Mar 22, 2024

It appears that the code snippet you’ve provided is in C#. Let’s break it down You’re iterating through the DocumentStyle objects within the result.Styles You’re invoking an AnalyzeDocumentOperation from an AnalyzeDocumentFromUriAsync method call. The operation is awaited until completion For each style, you’re checking if it’s handwritten (based on the IsHandwritten property) and if its confidence level is greater than 0.1

rookiee1111
Jun 23, 2024

prebuilt-read that is the correct one https://learn.microsoft.com/en-gb/training/modules/use-prebuilt-form-recognizer-models/3-use-general-document-read-layout-models