Master Microsoft AI-901: Azure AI Fundamentals Practice Questions
You have a Microsoft Foundry project that has a generative AI model deployment.
You need to ensure that responses generated by the model minimize costs and remain within a defined length.
Which parameter should you configure?
Correct : B
To minimize cost and keep generated responses within a defined length, configure Max Completion Tokens.
Microsoft's Azure OpenAI / Foundry API reference defines max_completion_tokens as an upper bound for the number of tokens that can be generated for a completion. Because generated tokens contribute to usage and response length, limiting completion tokens helps control both output length and cost.
Temperature and Top P control randomness or sampling behavior, not maximum response length. Model version settings do not directly define the generated response length.
Start a Discussions
You are developing an application that extracts fields from PDFs by using Azure Content Understanding in Foundry Tools.
You need to use the Python SDK to submit a PDF for analysis and retrieve the extraction results.
What should you do?
Correct : A
Azure Content Understanding analysis operations are long-running operations in the Python SDK. Microsoft's Python SDK documentation states that analysis operations return a poller, and the SDK provides LROPoller types that handle polling automatically when you call .result().
Therefore, the correct workflow is to submit the PDF by calling begin_analyze(), receive a poller, and then call:
result = poller.result()
Option B is incorrect because extraction results are not read from request headers. Option C is incorrect because the requirement is to use Azure Content Understanding extraction, not build a manual OCR-only mapping pipeline. Option D is incorrect because the SDK analysis pattern is asynchronous/long-running, not a simple synchronous analyze() call that returns all extracted fields in the same request.
Start a Discussions
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?
Correct : A
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
Start a Discussions
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?
Correct : A
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.
Start a Discussions
You have an Azure subscription.
You need to use Azure Content Understanding in Foundry Tools to extract structured data from invoices.
What should you provision?
Correct : B
To use Azure Content Understanding in Foundry Tools, Microsoft lists a Microsoft Foundry resource as a prerequisite. The documentation states that you need a Microsoft Foundry resource created in a supported region, and that the portal lists this resource under Foundry > Foundry.
The invoice scenario is also directly aligned with Content Understanding's intelligent document processing use case: Microsoft states that Content Understanding converts unstructured documents into structured data and gives invoice processing as an example.
Therefore, to extract structured data from invoices by using Azure Content Understanding in Foundry Tools, you should provision a Microsoft Foundry resource.
Start a Discussions
Total 50 questions