Pre-Winter Sale Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 70percent

Microsoft AI-901 Microsoft Azure AI Fundamentals (Updated Version) Exam Practice Test

Demo: 37 questions
Total 125 questions

Microsoft Azure AI Fundamentals (Updated Version) Questions and Answers

Question 1

You are building an AI system.

Which task should you include to help the service meet the Microsoft transparency principle for responsible AI?

Options:

A.

Provide documentation to help developers debug code.

B.

Enable autoscaling to ensure that a service scales based on demand.

C.

Ensure that a training dataset is representative of the population.

D.

Ensure that all visuals have an associated text that can be read by a screen reader.

Question 2

Select the answer that correctly completes the sentence.

Options:

Question 3

Select the answer that correctly completes the sentence.

Options:

Question 4

For each of the following statements, select Yes if the statement is true. Otherwise, select No.

NOTE: Each correct selection is worth one point.

Options:

Question 5

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:

A.

image generation

B.

image analysis

C.

object detection

D.

optical character recognition (OCR)

Question 6

For each of the following statements, select Yes if the statement is true. Otherwise, select No.

NOTE: Each correct selection is worth one point.

Options:

Question 7

You are using the Azure Speech SDK to develop a Python application that supports real-time spoken conversations.

Which Azure speech class should you use to configure the connection to the Azure Speech service?

Options:

A.

AudioConfig

B.

SpeechSynthesizer

C.

AuditOutputConfig

Question 8

What are two types of generative Al models? Each correct answer presents a complete solution.

NOTE: Each correct answer is worth one point.

Options:

A.

transformer

B.

computer vision

C.

GPT

D.

DALLE

E.

natural language processing

Question 9

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:

A.

a user message that includes only a text item and sends an image item in a separate request

B.

a system message that includes both a text item and an image item in the content array

C.

a system message that includes only a text item and sends an image item in a separate request

D.

a user message that includes both a text item and an image item in the content array

Question 10

Select the answer that correctly completes the sentence.

Options:

Question 11

You have a Python application that extracts fields from invoices by using Azure Content Understanding in Foundry Tools

You submit a PDF for analysts.

What should the application do to retrieve the results?

Options:

A.

Poll the operation results until the asynchronous analysis job succeeds

B.

Use optical character recognition (OCR) to parse the text from the PDF and map the fields in the code.

C.

Repeatedly call begin_analyze() with the same inputs to force a synchronous response.

D.

Send a GET request to the Microsoft Foundry endpoint to download the analyzer schema.

Question 12

For each of the following statements, select Yes if the statement is true. Otherwise, select No.

NOTE: Each correct selection is worth one point.

Options:

Question 13

Verifying that machine learning models do NOT show racial or gender bias is an example of which Microsoft responsible AI principle?

Options:

A.

Safety

B.

Privacy and security

C.

Reliability

D.

fairness

Question 14

For each of the following statements, select Yes if the statement is true. Otherwise, select

NOTE Each correct selection is worth one point.

Options:

Question 15

You deploy an Al system to assist with hiring decisions.

Company policy requires that human reviewers oversee Al-generated recommendations and remain responsible for final hiring

decisions.

Which Microsoft responsible Al principle is this an example of?

Options:

A.

reliability and safety

B.

fairness

C.

transparency

D.

accountability

Question 16

For each of the following statements, select Yes if the statement is true Otherwise, select No

NOTE: Each correct selection is worth one point.

Options:

Question 17

You use natural language processing to process text from a Microsoft news story. You receive the output shown in the following table.

Which type of natural language processing was performed?

Options:

A.

entity recognition

B.

translation

C.

key phrase extraction

D.

sentiment analysis

Question 18

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?

Options:

A.

Call begin_analyze(), and then call poller.result() to retrieve the results.

B.

Submit the PDF to an analyzer and read the results from the request headers.

C.

Use optical character recognition (OCR) to extract text from the PDF and map the fields in the code.

D.

Call analyze() to return the extracted fields synchronously in the same request.

Question 19

You have a multimodal model deployed in Microsoft Foundry

You need to configure the model to analyze an image and provide both a written summary and an audio summary of the image.

What is the minimum number of user prompts that should be sent to the model?

Options:

A.

1

B.

2

C.

3

D.

A

Question 20

You need to create an AI agent in Microsoft Foundry that follows a specific role and behavior when responding to users.

What should you configure?

Options:

A.

tokens per minute (TPM)

B.

system instructions

C.

temperature

D.

max completion tokens

Question 21

You are developing an application that continuously transcribes speech from a default microphone by using Azure Speech in Microsoft Foundry Tools.

You need to perform speech-to-text transcription from the microphone.

Which Python class should you use?

Options:

A.

SpeechSynthesizer

B.

AudioOutputConfig

C.

SpeechRecognizer

D.

SpeechConfig

Question 22

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?

Options:

A.

an Azure OpenAI resource

B.

a Microsoft Foundry resource

C.

A Microsoft Foundry project

D.

an Azure AI Search service

Question 23

Select the answer that correctly completes the sentence.

Options:

Question 24

Select the answer that correctly completes the sentence.

Options:

Question 25

You are reviewing best practices for using AI at your company.

Which Microsoft responsible AI principle is each task an example of? To answer, drag the appropriate principles to the correct tasks. Each task may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.

NOTE: Each correct match is worth one point.

Options:

Question 26

Select the answer that correctly completes the sentence.

Options:

Question 27

Select the answer that correctly completes the sentence.

Options:

Question 28

What is an example of the Microsoft responsible Al principle of transparency?

Options:

A.

ensuring that opportunities are allocated equally to all applicants

B.

ensuring that the privileged data of users is stored in a secure manner

C.

helping users understand the decisions made by an Al system

D.

ensuring that developers are accountable for the solutions they create

Question 29

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?

Options:

A.

client.recognize_linked_entities()

B.

client.recognize_entities()

C.

client.begin_extract_summary()

D.

client.extract_key_phrases()

Question 30

Select the answer that correctly completes the sentence.

Options:

Question 31

You have a Microsoft Foundry project that contains a model deployment.

You are developing an application that sends an image and a user question to the model.

You need to send both text and image content in the same request so the model can return an answer.

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. You may need to drag the split bar between panes or scroll to view content.

NOTE: Each correct selection is worth one point.

Options:

Question 32

You are deploying a generative Al model to a Microsoft Foundry project. You assign a higher tokens per minute (TPM) allocation to the model. What is the result of this change?

Options:

A.

The model generates shorter responses and additional source citations.

B.

The model generates longer responses.

C.

The speed and scale at which the model deployment can process inputs changes

D.

The Azure region availability of the model changes.

Question 33

For each of the following statements, select Yes if the statement is true. Otherwise, select No.

NOTE: Each correct selection is worth one point.

Options:

Question 34

In the Microsoft Foundry portal, you create an agent named Agent1, and then deploy the agent.

You open the Foundry playground to test Agent1.

What does the playground use to ensure that the tests reflect production behavior?

Options:

A.

the last saved configuration draft that was NOT deployed

B.

the model ' s base behavior without any agent instructions or tools

C.

the configuration of Agent1

D.

a default configuration generated by the playground

Question 35

Match the principles of responsible Al to appropriate requirements.

To answer, drag the appropriate principles from the column on the left to its requirement on the right. Each principle may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.

NOTE: Each correct selection is worth one point.

Options:

Question 36

You are developing an application that summarizes customer comments by using Azure Language in Foundry Tools.

You need to install the Azure Language SDK.

Which Python package should you install?

Options:

A.

langchain

B.

azure-ai-textanalytics

C.

azure-search-documents

D.

azure-ai-translation-text

Question 37

You have a Microsoft Foundry project that contains an agent named Agent1.

You need to ensure that Agent1 always calls an Azure function when the agent responds to user input.

To what should you set tool_choice for Agent1?

Options:

A.

auto

B.

none

C.

required

Demo: 37 questions
Total 125 questions