AI-103 Information Extraction Practice Question
You are integrating Azure AI Document Intelligence into a web application. You call the analyzeDocument API and receive a 202 Accepted response. What is the correct pattern for your application to retrieve the final extraction results?
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
Poll the URL provided in the Operation-Location response header until the status returns 'succeeded', then fetch the results.
Document Intelligence analysis is an asynchronous operation. You must poll the Operation-Location URL returned in the response header until the status is succeeded.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Wait for exactly 60 seconds and then send a GET request to the original analyze endpoint.
Why it's wrong here
Fixed-time waiting is inefficient and unreliable; polling the Operation-Location status is required.
- ✗
Immediately parse the response body of the 202 Accepted response for the extracted JSON data.
Why it's wrong here
A 202 response indicates the operation is still in progress; the body does not contain final results.
- ✓
Poll the URL provided in the Operation-Location response header until the status returns 'succeeded', then fetch the results.
Why this is correct
Asynchronous operations require polling the Operation-Location endpoint until completion.
- ✗
Open a WebSocket connection to the streaming endpoint specified in the WebSocket-Location header.
Why it's wrong here
Document Intelligence uses REST polling for asynchronous results, not WebSockets.
About these practice questions
One of 510 original AI-103 practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. Learn why practice questions differ from exam dumps →
JA
Written and reviewed by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
Last reviewed August 2026 · checked against the official Microsoft exam blueprint
This AI-103 practice question is part of Courseiva's free Microsoft certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the AI-103 exam.