AI-901: Microsoft Azure AI Fundamentals (Updated Version) Dumps
Free Microsoft AI-901 Exam Dumps August 2026
Here you can find all the free questions related with Microsoft Azure AI Fundamentals (Updated Version) (AI-901) exam. You can also find on this page links to recently updated premium files with which you can practice for actual Microsoft Azure AI Fundamentals (Updated Version) Exam. These premium versions are provided as AI-901 exam practice tests, both as desktop software and browser based application, you can use whatever suits your style. Feel free to try the Microsoft Azure AI Fundamentals (Updated Version) Exam premium files for free, Good luck with your Microsoft Azure AI Fundamentals (Updated Version) Exam.
Question No: 1
MultipleChoice
Based on the image provided, here is the transcribed text:
You need to build an AI solution that produces new product images based on written descriptions provided by users.
Which AI workload should you use?
Options
Answer AExplanation
The requirement is to produce new product images based on written descriptions. This is an image generation workload, because the AI system is creating entirely new images from natural language prompts.
Why the other options are incorrect:
B . image analysis is used to examine and interpret existing images.
C . object detection is used to identify and locate objects within an existing image.
D . optical character recognition (OCR) is used to extract text from images or scanned documents.
Since the solution must generate new visual content from user-provided descriptions, the correct answer is:
A . image generation
Question No: 2
MultipleChoice
You need to build an AI solution that generates marketing email drafts based on a short description of a product and its target audience.
Which AI workload should you use?
Options
Answer AExplanation
Generating marketing email drafts from a short product description and target audience is a content generation task. This is a generative AI workload because the system creates new text based on the user's prompt.
B . computer vision is for interpreting images or video.
C . text classification categorizes existing text, but does not draft new marketing emails.
D . speech recognition converts spoken audio into text.
Therefore, the correct answer is A. generative AI.
Question No: 3
MultipleChoice
You have a Microsoft Foundry project that contains a vision-enabled model deployment.
You need to develop an application that sends a message containing text and an image URL. The solution must ensure the quickest response time.
Which message structure should you include in the request?
Options
Answer DExplanation
For a vision-enabled model, Microsoft documentation shows that multimodal prompts can include both text and image content in the same user message content array. Azure OpenAI vision models accept multimodal image-and-text input and return natural language responses.
The correct request structure is a user message with a content array containing both items, for example:
{
'role': 'user',
'content': [
{'type': 'input_text', 'text': 'What is in this image?'},
{'type': 'input_image', 'image_url': image_url}
]
}
This avoids sending separate requests and is therefore the best choice for quickest response time.
A and C are incorrect because they send the text and image separately.
B is incorrect because the image/question should be sent as a user message, while system messages are used for instructions and behavior.