nerdexam
Microsoft

AI-102 · Question #93

You have receipts that are accessible from a URL. You need to extract data from the receipts by using Azure AI Document Intelligence and the SDK. The solution must use a prebuilt model. Which client a

The correct answer is C. the FormRecognizerClient client and the StartRecognizeReceiptsFromUri method. To analyze receipts from a URL, use the StartRecognizeReceiptsFromUri method private static async Task AnalyzeReceipt( FormRecognizerClient recognizerClient, string receiptUri) RecognizedFormCollection receipts = await recognizerClient.StartRecognizeReceiptsFromUri(new Uri(receip

Submitted by yousef_jo· Mar 30, 2026

Question

You have receipts that are accessible from a URL. You need to extract data from the receipts by using Azure AI Document Intelligence and the SDK. The solution must use a prebuilt model. Which client and method should you use?

Options

  • Athe FormRecognizerClient client and the StartRecognizeContentFromUri method
  • Bthe FormTrainingClient client and the StartRecognizeContentFromUri method
  • Cthe FormRecognizerClient client and the StartRecognizeReceiptsFromUri method
  • Dthe FormTrainingClient client and the StartRecognizeReceiptsFromUri method

How the community answered

(33 responses)
  • A
    12% (4)
  • B
    3% (1)
  • C
    79% (26)
  • D
    6% (2)

Explanation

To analyze receipts from a URL, use the StartRecognizeReceiptsFromUri method private static async Task AnalyzeReceipt( FormRecognizerClient recognizerClient, string receiptUri) RecognizedFormCollection receipts = await recognizerClient.StartRecognizeReceiptsFromUri(new Uri(receiptUrl)).WaitForCompletionAsync(); https://docs.microsoft.com/en-us/azure/applied-ai-services/form-recognizer/quickstarts/client-libra

Topics

#Azure Document Intelligence#Prebuilt models#SDK usage#Receipt processing

Community Discussion

No community discussion yet for this question.

Full AI-102 Practice