AI-103 Text Analysis Practice Question
You are troubleshooting an Azure AI Language asynchronous summarization job. You submitted a batch of documents using the `/analyze` endpoint with long-running operations (LRO). How should your application check the status and retrieve the results of the job?
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 using a GET request until the status is 'succeeded'.
Asynchronous operations return an 'operation-location' response header. Your application must poll that URL using a GET request until the status returns '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.
- ✗
Listen for incoming webhook notifications on an Azure Event Grid subscription attached to the text analytics resource.
Why it's wrong here
While Event Grid can be used for some services, standard LRO batch job retrieval requires polling the operation-location URI unless specifically configured otherwise.
- ✗
Query the Azure Monitor metrics API for job completion status.
Why it's wrong here
Job results and execution status are retrieved via the operation-location API, not Azure Monitor metrics.
- ✓
Poll the URL provided in the 'operation-location' response header using a GET request until the status is 'succeeded'.
Why this is correct
Asynchronous batch jobs in Azure AI Language require polling the operation-location URI.
- ✗
Repeatedly send synchronous POST requests to the same document endpoint until a 200 OK is returned.
Why it's wrong here
Synchronous endpoints timeout on large batch payloads; asynchronous jobs require polling the operation-location URL.
About these practice questions
Courseiva writes every AI-103 question from scratch — 510 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. 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.