Welcome to TestSimulate

Pass Your Next Certification Exam Fast!

Everything you need to prepare, learn & pass your certification exam easily.

365 days free updates. First attempt guaranteed success.

Microsoft Azure AI Fundamentals (AI-901) Free Practice Test

Question 1
You have a Microsoft Foundry project that contains a generative AI model deployment.
You test the model by using the Foundry playground.
You need to develop an application that sends requests to the deployed model.
Which information must the application include to call the model?

Correct Answer: C
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 2
You are developing an application that processes voicemail recordings by using Azure Content Understanding in Foundry Tools.
Which feature does Azure Content Understanding use to convert audio to text?

Correct Answer: A
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 3
You are developing an application that uses the Azure Language SDK and a Microsoft Foundry resource.
You need to return a list of important topics from unstructured text.
Which Python method should you use?

Correct Answer: A
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 4
Select the answer that correctly completes the sentence.
Correct Answer:

Explanation:
The correct answer is endpoint of the model . After a vision-enabled GPT model is deployed in Microsoft Foundry, the deployment exposes an inference endpoint that applications can call programmatically. The application sends requests containing text and, when required, image content to the deployed model through the appropriate chat-completions API endpoint. Microsoft's documentation explicitly states that to use vision- enabled models, you call the Chat Completion API against a supported model that has been deployed.
The Foundry playground is primarily an interactive environment for testing prompts, model behavior, and multimodal inputs during development. It is not the production interface that an external application uses to submit inference requests. An evaluation pipeline is used to assess model or application quality against defined metrics and datasets, while a training dataset is associated with model training or fine-tuning rather than serving inference traffic.
Microsoft Foundry provides the endpoint and required authentication information after deployment.
Applications then invoke that endpoint using an SDK or REST API, passing text and image inputs as part of the request payload.
Question 5
You are developing an application that converts text into spoken audio and saves the synthesized audio to a file by using Azure Speech in Foundry Tools.
How should you complete the Python code? To answer, select the appropriate option in the answer area.
NOTE: Each correct selection is worth one point.
Correct Answer:

Explanation:
AudioOutputConfig(filename= " output.wav " )
The question specifically states the application must save the synthesized audio to a file . In the Azure Speech SDK for Python, speechsdk.audio.AudioOutputConfig(filename= " output.wav " ) directs the synthesizer to write the generated speech output directly to a WAV file on disk - which is exactly the requirement.
Why the other options are wrong:
* AudioOutputConfig(stream) - This routes audio output to an in-memory audio stream object, not a file. It is used when you want to process or play the audio programmatically without saving it to disk.
* AudioStreamFormat(wave_stream_format=AudioStreamWaveFormat.PCM) - This class defines the format of an audio stream (e.g., PCM encoding, sample rate). It is used when configuring custom audio streams, not when specifying a file output destination. It is not a valid argument for speechsdk.audio. in this context.
The correct and complete line is:
audio_config = speechsdk.audio.AudioOutputConfig(filename= " output.wav " )
Question 6
You need to compare the costs of large language models (LLMs) for a generative AI solution.
What should you use in the Microsoft Foundry portal?

Correct Answer: B
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 7
For each of the following statements, select Yes if the statement is true. Otherwise, select NOTE Each correct selection is worth one point.
Correct Answer:

Explanation:

Statement 1: Azure Content Understanding in Foundry Tools can analyze only PDF documents. = No Azure Content Understanding is not limited to PDF documents. It can analyze multiple content types, including documents, forms, images, audio, and video.
Statement 2: Azure Content Understanding in Foundry Tools results are returned in the JSON format.
= Yes
Azure Content Understanding returns structured analysis results in JSON format. This is how extracted fields, values, confidence scores, and other analysis results are represented.
Statement 3: Azure Content Understanding in Foundry Tools can extract structured fields from documents and forms. = Yes Azure Content Understanding can use analyzers and schemas to extract structured fields from documents and forms, such as invoices, receipts, contracts, and other business documents.