Microsoft Azure AI Fundamentals AI-901 Dumps in PDF

Free Microsoft AI-901 Real Questions (page: 1)

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?

  1. AudioOutputConfig
  2. SpeechSynthesizer
  3. AudioConfig
  4. SpeechConfig

Answer(s): D

Explanation:

To configure the connection to the Azure Speech service, you should use the azure.cognitiveservices.speech.SpeechConfig class.
Implementation Details Initialization: This class holds authentication and endpoint details, such as your Azure resource key and region.
Usage: You pass this configuration object into your real-time processing classes, like SpeechRecognizer (for speech-to-text) or SpeechSynthesizer (for text-to-speech).


Reference:

https://docs.azure.cn/en-us/ai-services/speech-service/how-to-recognize-speech



HOTSPOT (Drag and Drop is not supported)
Select the answer that correctly completes the sentence.
Hot Area:

  1. See Explanation section for answer.

Answer(s): A

Explanation:



Box: a base64-encoded image data When using the OpenAI Responses API and a vision-enabled model, you can include an image in a request by providing the image as _______________.
When using the OpenAI Responses API with a vision-enabled model, you can include an image in a request by providing it in three different formats: A fully qualified image URL: Passing the web link where the image is hosted online. *-> A Base64-encoded data URL: Encoding a local image file directly into a text string (formatted as data:image/jpeg;base64,...). A file ID: Uploading the image via the Files API first and referencing its unique ID.


Reference:

https://developers.openai.com/api/docs/guides/image-generation



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?

  1. system instructions
  2. temperature
  3. tokens per minute (TPM)
  4. max completion tokens

Answer(s): A

Explanation:

In Microsoft Foundry, instructions (formerly referred to as system messages) are the primary way to define the role, behavior, tone, and constraints of your AI agent.


Reference:

https://learn.microsoft.com/en-us/azure/foundry-classic/agents/quickstart



HOTSPOT (Drag and Drop is not supported)
For each of the following statements, select Yes if the statement is true. Otherwise, select No.
Note: Each correct selection is worth one point.
Hot Area:

  1. See Explanation section for answer.

Answer(s): A

Explanation:



Box 1: No No - System prompts can be used to authorize users.
In Azure AI, system prompts cannot securely authorize users. They guide model behavior, but because LLMs are susceptible to prompt injections and jailbreaks, relying on them for security poses severe vulnerabilities.Instead, you should handle authorization and authentication through secure infrastructural controls and middleware.
Box 2: Yes Yes - A system prompt used to reduce tokens per minute (TPM).
A system prompt can be specifically engineered to significantly reduce your Tokens Per Minute (TPM) consumption in Azure OpenAI Service. TPM limits are triggered by the combined volume of input (prompt) tokens and output (completion) tokens.
The primary mechanism of a "TPM-reduction system prompt" is to strictly constrain the model’s output verbosity and eliminate conversational filler, which prevents your application from hitting 429 TooManyRequests throttling errors.
Box 3: Yes Yes - A system prompt guides the behavior of a generate AI model.
In Azure AI (and generative AI in general), a system prompt (often called a system message or metaprompt) acts as the foundational instruction set that dictates the AI model's behavior, tone, operational constraints, and guardrails.A system prompt serves as a "foundational job description" for the model. It sits in the backgro


Reference:

https://learn.microsoft.com/en-us/azure/foundry/openai/concepts/system-message



You are developing a web app that processes invoices to calculate expenses.
You need to extract structured fields, including nested values, from the invoices by using a defined schema.
What should you use?

  1. an optical character recognition (OCR)-only document processing pipeline
  2. a transcription workflow in Azure Speech in Foundry Tools
  3. an analyzer in Azure Content Understanding in Foundry Tools
  4. an Azure AI Search service

Answer(s): C

Explanation:

An analyzer in Azure Content Understanding within Foundry Tools can be used for this scenario.
Prebuilt Invoice Support: It offers prebuilt invoice analyzer templates specifically trained to identify common transactional data out of the box.
Schema-Driven Extraction: Instead of manual prompt engineering or tedious labeling, you can supply a strict JSON schema containing the specific fields you need.
Nested Values & Layouts: It handles hierarchical, nested elements (such as itemized tables, nested line items, or customer details) and maps them cleanly into arrays or structured objects.
Web App Integration: Activating the analyzer creates a highly scalable REST API endpoint. Your invoice-processing web app can query this endpoint to receive clean, machine-readable structured JSON payloads ready for downstream expense calculation.


Reference:

https://learn.microsoft.com/en-us/azure/ai-services/content-understanding/overview



HOTSPOT (Drag and Drop is not supported)
For each of the following statements, select Yes if the statement is true. Otherwise, select No.
Note: Each correct selection is worth one point.
Hot Area:

  1. See Explanation section for answer.

Answer(s): A

Explanation:



Box 1: No No - Voice Live returns only transcribed text.
Azure AI's Voice Live API does not return only transcribed text. It is a fully managed, end-to-end, low-latency speech-to-speech pipeline.Instead of forcing you to build separate steps for speech-to-text, LLM processing, and text-to-speech, the Azure Voice Live API combines these into a single WebSocket connection.
Box 2: No No - Voice Live requires you to separately implement speech to text and text to speech services.
You do not need to implement them separately. The Azure Voice Live API is a fully managed service that integrates speech-to-text, generative AI, and text-to-speech into a single unified pipeline. It handles both listening and speaking through one WebSocket interface, eliminating complex patchwork code.
Box 3: Yes Voice Live combines speech to text, reasoning, and text to speech into a single conversational experience.
The Azure Voice Live API is a fully managed service that integrates speech-to-text, generative AI, and text-to-speech into a single unified pipeline.


Reference:

https://learn.microsoft.com/en-us/azure/ai-services/speech-service/voice-live-language-support



HOTSPOT (Drag and Drop is not supported)
You are developing a voice application that listens for spoken commands and converts them into text 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.
Hot Area:

  1. See Explanation section for answer.

Answer(s): A

Explanation:





Box: recognizer.recognize_once() The recognizer.recognize_once() method belongs to the SpeechRecognizer object. Its purpose is to start speech recognition from your audio input (like a microphone) and stop after a single utterance is parsed into text. This perfectly fulfills the goal of creating an application that "listens for spoken commands and converts them into text".
Purpose: The recognizer.recognize_once() or recognizer.recognize_once_async() method instructs the Azure Speech Recognizer to start listening to the audio input stream.
Behavior: It captures a single spoken utterance (like a short command), performs speech recognition, and returns the recognized text.


Reference:

https://gotranscript.com/public/developing-speech-to-text-with-c-sharp-sdk



What are two purposes of instructions when prompting a generative AI model? Each correct answer presents part of the solution.
Note: Each correct selection is worth one point.

  1. defines the agent’s role and behavior
  2. selects which model to use
  3. defines the Azure region where inference occurs
  4. defines the tokens per minute (TPM) allocation for the model
  5. defines constraints on the model’s responses

Answer(s): A,E

Explanation:

Giving a generative AI model clear, structural instructions (commonly referred to as Prompt Engineering) is the standard method used to define its persona, guide its behavior, and place strict operational boundaries on its responses.This is typically achieved through explicit instruction sets like System Instructions and targeted Prompt Guidelines.
1. Defining the Agent's Role and BehaviorEstablishing a persona prevents the AI from wandering into areas outside its intended scope and ensures the delivery style matches your needs.
2. Defining Constraints on ResponsesConstraints act as guardrails that prevent the AI from hallucinating, rambling, or providing incorrect information.


Reference:

https://ai.google.dev/gemini-api/docs/prompting-strategies



Share your comments for Microsoft AI-901 exam with other users:

C
CV
9/9/2023 1:54:00 PM

its time to comptia sec+

S
SkepticReader
8/1/2023 8:51:00 AM

question 35 has an answer for a different question. i believe the answer is "a" because it shut off the firewall. "0" in registry data means that its false (aka off).

N
Nabin
10/16/2023 4:58:00 AM

helpful content

B
Blessious Phiri
8/15/2023 3:19:00 PM

oracle 19c is complex db

S
Sreenivas
10/24/2023 12:59:00 AM

helpful for practice

L
Liz
9/11/2022 11:27:00 PM

support team is fast and deeply knowledgeable. i appreciate that a lot.

N
Namrata
7/15/2023 2:22:00 AM

helpful questions

L
lipsa
11/8/2023 12:54:00 PM

thanks for question

E
Eli
6/18/2023 11:27:00 PM

the software is provided for free so this is a big change. all other sites are charging for that. also that fucking examtopic site that says free is not free at all. you are hit with a pay-wall.

O
open2exam
10/29/2023 1:14:00 PM

i need exam questions nca 6.5 any help please ?

G
Gerald
9/11/2023 12:22:00 PM

just took the comptia cybersecurity analyst (cysa+) - wished id seeing this before my exam

R
ryo
9/10/2023 2:27:00 PM

very helpful

J
Jamshed
6/20/2023 4:32:00 AM

i need this exam

R
Roberto Capra
6/14/2023 12:04:00 PM

nice questions... are these questions the same of the exam?

S
Synt
5/23/2023 9:33:00 PM

need to view

V
Vey
5/27/2023 12:06:00 AM

highly appreciate for your sharing.

T
Tshepang
8/18/2023 4:41:00 AM

kindly share this dump. thank you

J
Jay
9/26/2023 8:00:00 AM

link plz for download

L
Leo
10/30/2023 1:11:00 PM

data quality oecd

B
Blessious Phiri
8/13/2023 9:35:00 AM

rman is one good recovery technology

D
DiligentSam
9/30/2023 10:26:00 AM

need it thx

V
Vani
8/10/2023 8:11:00 PM

good questions

F
Fares
9/11/2023 5:00:00 AM

good one nice revision

L
Lingaraj
10/26/2023 1:27:00 AM

i love this thank you i need

M
Muhammad Rawish Siddiqui
12/5/2023 12:38:00 PM

question # 142: data governance is not one of the deliverables in the document and content management context diagram.

A
al
6/7/2023 10:25:00 AM

most answers not correct here

B
Bano
1/19/2024 2:29:00 AM

what % of questions do we get in the real exam?

O
Oliviajames
10/25/2023 5:31:00 AM

i just want to tell you. i took my microsoft az-104 exam and passed it. your program was awesome. i especially liked your detailed questions and answers and practice tests that made me well-prepared for the exam. thanks to this website!!!

D
Divya
8/27/2023 12:31:00 PM

all the best

K
KY
1/1/2024 11:01:00 PM

very usefull document

A
Arun
9/20/2023 4:52:00 PM

nice and helpful questions

J
Joseph J
7/11/2023 2:53:00 PM

i found the questions helpful

M
Meg
10/12/2023 8:02:00 AM

q 105 . ans is d

N
Navaneeth S
7/14/2023 7:57:00 AM

i have interest to get a sybase iq dba certification

AI Tutor 👋 I’m here to help!