Demo Microsoft AI-901 Exam Questions

Demo practice questions for guest users.

Section: Practice Mode 5 Questions
Demo Practice
Question 1

You are developing an application that analyzes voicemail recordings by using Azure Content Understanding in Foundry Tools. You need to extract a transcript and structured information from the recordings. Which type of analyzer should you use?

Correct Answer: C
Explanation:
Voicemail recordings are audio content. Azure Content Understanding analyzers define what type of content to process, including documents, images, audio, or video, and what elements to extract, including transcripts and structured fields. Microsoft’s custom analyzer documentation also shows an audio example based on prebuilt-audio for processing customer support call recordings, which is the same content type as voicemail recordings. Therefore, to extract a transcript and structured information from voicemail recordings, you should use an audio analyzer. 
Question 2

What are two purposes of instructions when prompting a generative AI model? Each correct answer presents part of the solution. NOTE: Each correct selection is worth one point.

Correct Answer: A, B
Explanation:
Microsoft Foundry Agent Service documentation states that instructions define goals, constraints, and behavior for an agent. Therefore, instructions are used to guide how the generative AI model or agent should respond and behave. Option A is correct because instructions can define constraints the model must follow. Option B is correct because instructions can define the agent’s role and behavior. Options C, D, and E are incorrect because Azure region, model selection, and TPM allocation are configuration or deployment/resource settings, not purposes of prompt instructions. 
Question 3

To Resource1, you deploy a gpt-4.1-mini model by using a model deployment named my-mini-gpt. You need to connect to my-mini-gpt from an application. How should you complete the Python code? To answer, drag the appropriate values to the correct targets. Each value may be used once, more than once, or not at all. NOTE: Each correct selection is worth one point. 

Correct Answer: A
Explanation:
client = OpenAI( api_key="...", base_url="https://resource1.openai.azure.com/openai/v1/", ) response = client.responses.create( model="my-mini-gpt", ... ) For Azure OpenAI in Microsoft Foundry, the base_url uses the Azure OpenAI resource name in the endpoint format: https://.openai.azure.com/openai/v1/ In the question, the Azure OpenAI resource is named Resource1, so the first blank must be resource1. Microsoft documentation for Azure OpenAI v1 endpoints confirms that the endpoint must use the ...openai.azure.com/openai/v1/ path. For the model parameter, Azure OpenAI requires the deployment name, not the underlying model name. Microsoft states that Azure OpenAI always requires the deployment name when calling APIs, even when the parameter is named model. The deployed model is gpt-4.1-mini, but the deployment name is my-mini-gpt. Therefore, the second blank must be: model="my-mini-gpt" So the correct selections are: base_url blank = resource1 model blank = my-mini-gpt 


Demo Practice Mode

You are viewing only the questions marked as Demo.

BACK TO EXAM