Deal of The Day! Hurry Up, Grab the Special Discount - Save 25% - Ends In 00:00:00 Coupon code: SAVE25
Welcome to Pass4Success

- Free Preparation Discussions

Microsoft AI-901 Exam - Topic 2 Question 2 Discussion

Actual exam question for Microsoft's AI-901 exam
Question #: 2
Topic #: 2
[All AI-901 Questions]

You are developing an application that extracts fields from PDFs by using Azure Content Understanding in Foundry Tools.

You need to use the Python SDK to submit a PDF for analysis and retrieve the extraction results.

What should you do?

Show Suggested Answer Hide Answer
Suggested Answer: A

Azure Content Understanding analysis operations are long-running operations in the Python SDK. Microsoft's Python SDK documentation states that analysis operations return a poller, and the SDK provides LROPoller types that handle polling automatically when you call .result().

Therefore, the correct workflow is to submit the PDF by calling begin_analyze(), receive a poller, and then call:

result = poller.result()

Option B is incorrect because extraction results are not read from request headers. Option C is incorrect because the requirement is to use Azure Content Understanding extraction, not build a manual OCR-only mapping pipeline. Option D is incorrect because the SDK analysis pattern is asynchronous/long-running, not a simple synchronous analyze() call that returns all extracted fields in the same request.


Contribute your Thoughts:

0/2000 characters
Beatriz
5 days ago
I'm not entirely sure, but I remember something about using OCR for text extraction. Could that relate to option C?
upvoted 0 times
...
Willard
10 days ago
I think we need to use the asynchronous method for analyzing PDFs, so maybe A is the right choice?
upvoted 0 times
...

Save Cancel