Microsoft AI-901 Azure AI Fundamentals 1-10

表示モード
画像位置
文字位置
理解度の自動記録
STATUS FILTER

Choose confidence levels to display

Loading...
Q1AI-901
Show answer
Correct answer: D. Include both the text item and the image item in the content array of the user message.

With a vision-capable model, text and images can be sent together in the content array of the same user message.
Microsoft Learn also shows an example of handling image input containing an image URL and text input in a single request.
Option D, which includes both in the same content array within the user message rather than splitting them into separate requests, achieves the shortest response time.
The system message is used mainly for instructions to the model and is not suited to carrying the image question itself.
Use vision-capable chat models

Q2AI-901
Show answer
Correct answer: B. AudioOutputConfig

The answer key for this question is B, but on Microsoft Learn the connection information for the Speech service is normally configured with SpeechConfig, while AudioOutputConfig is the class that configures the output destination for speech synthesis.
Among the choices, the closest is AudioOutputConfig, which handles the output configuration for speech synthesis.
AudioConfig configures the audio for input or output, and SpeechSynthesizer is the class that performs the synthesis, so neither is the primary component that configures the connection itself.
AudioOutputConfig class

Q3AI-901
Show answer
Correct answer: C. Audio analyzer

Because a voicemail recording is audio data, the analyzer to use is the audio analyzer.
Microsoft Learn explains that the Content Understanding audio analyzer transcribes conversational speech and performs speaker separation, and can extract structured fields such as summaries, sentiment, and key topics.
The analyzers for images, video, and documents target different types of input data and are therefore not suited to this requirement.
Azure Content Understanding for Foundry Tools audio solutions

Q4AI-901

Drag each option to the matching requirement’s drop zone, or tap to place it. Click a filled zone to send it back. (The same option may be used more than once.)

Accountability
Fairness
Inclusiveness
Privacy and security
Reliability and safety
Transparency
Evaluating a model’s output to confirm that its decisions are not biased against specific demographic groups
Encrypting customers’ confidential data and restricting system access to authorized personnel
Informing users that they are interacting with an AI system and explaining the system’s capabilities and limitations
Testing the AI system under a variety of conditions to reduce unexpected failures
Show answer
Correct answer: Evaluating a model’s output to confirm that its decisions are not biased against specific demographic groups → Fairness / Encrypting customers’ confidential data and restricting system access to authorized personnel → Privacy and security / Informing users that they are interacting with an AI system and explaining the system’s capabilities and limitations → Transparency / Testing the AI system under a variety of conditions to reduce unexpected failures → Reliability and safety

In Microsoft’s responsible AI principles, reducing bias to aim for fair decisions maps to Fairness, and data protection with access control maps to Privacy and security.
In addition, disclosing the use of AI and explaining capabilities and limitations is Transparency, and improving stable operation and safety through thorough testing is Reliability and safety.
It is important to be able to map each principle to a concrete operational example.
Microsoft’s responsible AI

Q5AI-901
Show answer
Correct answer: D. input_image

When passing an image to a vision-capable model with the Azure OpenAI Responses API, the image is treated as input content, so you include input_image in the content array.
The expected structure specifies an image_url to pass the image to be analyzed.
image_generation is for generating images, output_image is an output image, and image_base64 is not the official content item for this question.
Therefore, input_image is the correct choice for including an image for analysis in the request.
Use the Azure OpenAI Responses API

Q6AI-901
Show answer
Correct answer: A. Generative AI

Taking a short product description and target audience as input and producing new text such as a marketing email draft is a representative use of generative AI.
Generative AI creates new content such as text, images, and code based on a prompt.
Computer vision analyzes images, text classification categorizes existing text, and speech recognition transcribes audio, so none of them apply to generating new email content.
Introduction to generative AI and agents

Q7AI-901
Show answer
Correct answer: B. Max Completion Tokens

To control the length of a generative AI model’s response and limit the number of tokens used in the output, you configure Max Completion Tokens.
Because the number of tokens generated affects usage and cost, setting an upper limit makes it easier to keep responses within a defined length.
Temperature and Top P are settings that adjust the randomness of the output and do not directly limit the maximum response length.
Model version settings are also not used to control response length.
Azure OpenAI REST API reference for Microsoft Foundry Models

Q8AI-901
Show answer
Correct answer: D. The model endpoint and authentication credentials

To call a deployed Azure OpenAI model from an application, you need the model endpoint to which the request is sent, and authentication credentials such as an API key or Microsoft Entra ID.
The training dataset, the display name of the Foundry project, and the playground session history are not used for authenticating or connecting to call the model.
Note that Azure AI Studio has now been consolidated and renamed to Azure AI Foundry.
Use the Azure OpenAI Responses API

Q9AI-901
Show answer
Correct answer: C. Transcription

The capability that converts audio data to text is transcription.
The audio analysis in Azure Content Understanding can convert audio content such as conversations and recordings into searchable, analyzable text transcripts.
Voice Live is for real-time voice interaction, key phrase extraction extracts important terms, and OCR recognizes characters in images or documents, so none of them apply to converting voicemail audio to text.
Azure Content Understanding for Foundry Tools audio solutions

Q10AI-901
Show answer
Correct answer: C. Add utterances to the None intent

Conversational Language Understanding (CLU) provides a special intent called the None intent, which is used to classify utterances that do not match any custom intent.
To correctly detect out-of-scope questions and unrelated input, it is important to add representative example utterances to the None intent and train the model on them.
This enables the model to classify user input as None when it does not match any existing intent.
None intent