AI-900-CN Exam Question 51
要完成句子,請在答案區中選擇適當的選項。


Correct Answer:

Explanation:

According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and Microsoft Learn module "Identify features of regression machine learning", regression is a type of supervised machine learning used when the target variable (the value you want to predict) is a continuous numeric value.
In this scenario, the task is to predict how many hours of overtime a delivery person will work based on the number of orders received. Both the input (number of orders) and the output (hours of overtime) are numeric variables. Since the goal is to estimate a quantitative value rather than categorize or group data, this is a classic example of a regression problem.
Regression models analyze the relationship between variables to make numerical predictions. For example, the model might learn that each additional 20 orders increases overtime by about two hours. Common algorithms used for regression include linear regression, decision tree regression, and boosted regression models. These models produce outputs such as "expected overtime = 5.6 hours," which are continuous numeric results.
To contrast with the other options:
* Classification is used for predicting categories or labels, such as "overtime required" vs. "no overtime," or "high-risk" vs. "low-risk." It deals with discrete outputs rather than continuous numbers.
* Clustering is an unsupervised learning approach used to group similar data points based on shared characteristics, such as grouping delivery staff by performance patterns or customer types.
As emphasized in Microsoft's Responsible AI and Machine Learning Fundamentals learning paths, regression models are ideal for numeric forecasting problems such as predicting sales, revenue, demand, or working hours.
Therefore, the correct answer is: Regression.
Reference:Microsoft Learn - Identify the types of machine learning models: Regression, Classification, and Clustering (AI-900 Learning Path)
AI-900-CN Exam Question 52
對於以下每個陳述,如果該陳述為真,請選擇「是」。否則,選擇“否”。 注意:每個正確的選擇都值得一分。


Correct Answer:

Explanation:
Yes, No, Yes.
According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and the Microsoft Learn module "Identify capabilities of Azure Cognitive Services for Language", the Azure Translator service is a cloud-based machine translation service used to translate text or entire documents between languages in real time. It uses REST APIs or client libraries to translate text input, detect languages, and support multiple target languages in a single request.
* "The following service call will accept English text as an input and output Italian and French text:
/translate?from=en&to=it,fr - Yes.This URL format is correct because the Translator service API allows multiple target languages to be specified in a single to parameter separated by commas. In this case, from=en defines the source language (English), and to=it,fr requests translations into Italian (it) and French (fr). The API would return results in both target languages simultaneously. This syntax is officially documented in Microsoft Learn as the valid format for multi-language translation.
* "The following service call will accept English text as an input and output Italian and French text:
/translate?from=en&to=fr&to=it - No.This format is incorrect, as the Translator API does not support repeating the to parameter multiple times. Only one to parameter is valid, and multiple target languages must be provided as a comma-separated list within the same to parameter.
* "The Translator service can be used to translate documents from English to French." - Yes.This statement is true. The Translator service supports both text translation and document translation. The document translation capability allows the translation of whole files such as Word, PowerPoint, or PDF documents while preserving formatting and structure. This feature is included in the official Translator API under "Document Translation." In summary, the AI-900 study content clarifies that:
# /translate?from=en&to=it,fr # Valid syntax
# /translate?from=en&to=fr&to=it # Invalid syntax
# Translator can translate full documents between languages
AI-900-CN Exam Question 53
對於以下每個陳述,如果該陳述為真,請選擇「是」。否則,選擇“否”。 注意:每個正確的選擇都值得一分。


Correct Answer:

Explanation:
< Smart home device answering questions # Yes
Webchat using Azure Bot Service # Yes
Auto-caption generation for videos # No
According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and the Microsoft Learn module "Describe features of common AI workloads", Conversational AI refers to systems designed to engage in human-like dialogue through natural language-either text or speech. These systems include chatbots, virtual assistants, and voice-enabled smart devices, all of which can interpret user intent and respond meaningfully.
* A smart device in the home that responds to questions such as "When is my next appointment?" - Yes.
This is a classic example of Conversational AI. Devices like smart speakers or personal digital assistants use speech recognition, natural language understanding (NLU), and language generation to interpret spoken input and respond conversationally. The AI-900 study materials identify these as examples of voice-based conversational AI systems, which fall under the Speech and Language AI workloads.
* An interactive webchat feature on a company website can be implemented by using Azure Bot Service
- Yes.This statement is true. The Azure Bot Service is the primary Microsoft tool for creating and deploying conversational bots across various channels, including websites, Microsoft Teams, and other messaging platforms. The AI-900 syllabus specifically cites this as an example of implementing conversational AI for customer support or information retrieval.
* Automatically generating captions for pre-recorded videos is an example of conversational AI - No.
This is not conversational AI; instead, it falls under the Speech AI workload, specifically speech-to-text transcription. Automatically generating captions involves converting audio from video into written text but does not involve dialogue or interaction between a user and a system.
Thus, based on the official AI-900 guidance, only the first two scenarios describe conversational AI use cases.
AI-900-CN Exam Question 54
您正在 Azure 中開發 Chabot 解決方案。
您應該使用哪種服務來確定使用者的意圖?
您應該使用哪種服務來確定使用者的意圖?
Correct Answer: D
In Azure, the Language service unifies several natural language capabilities, including LUIS, QnA Maker, and Text Analytics, into one comprehensive service. To determine a user's intent in a chatbot, you use the Conversational Language Understanding (CLU) feature of the Language service, which is the evolution of LUIS.
CLU helps chatbots and applications comprehend natural language input by identifying the intent (the purpose of the user's statement) and extracting entities (important details). For example, when a user types "Book a meeting for tomorrow," the model recognizes the intent (BookMeeting) and the entity (tomorrow).
The other options do not determine intent:
* Translator (A) is used for language translation.
* Azure Cognitive Search (B) retrieves documents based on search queries.
* Speech (C) converts audio to text but doesn't analyze meaning.
Thus, to determine a user's intent in a chatbot scenario, the correct service is D. Language.
Reference:Microsoft Learn - "Build conversational language understanding models with Azure Language service."
CLU helps chatbots and applications comprehend natural language input by identifying the intent (the purpose of the user's statement) and extracting entities (important details). For example, when a user types "Book a meeting for tomorrow," the model recognizes the intent (BookMeeting) and the entity (tomorrow).
The other options do not determine intent:
* Translator (A) is used for language translation.
* Azure Cognitive Search (B) retrieves documents based on search queries.
* Speech (C) converts audio to text but doesn't analyze meaning.
Thus, to determine a user's intent in a chatbot scenario, the correct service is D. Language.
Reference:Microsoft Learn - "Build conversational language understanding models with Azure Language service."
AI-900-CN Exam Question 55
對於以下每個陳述,如果該陳述為真,請選擇「是」。否則,選擇“否”。 注意:每個正確的選擇都值得一分。


Correct Answer:

Explanation:

"Generative AI enables software applications to generate new content, such as language dialogs and images."
- YES
This statement is true. According to the Microsoft Azure AI Fundamentals (AI-900) study guide and Microsoft Learn documentation, Generative AI refers to systems capable of creating new content such as text, audio, images, video, and code. Models like GPT, DALL E, and Codex use deep learning to generate human- like responses, natural conversations, or creative media. This is a key differentiator between generative and discriminative AI - generative AI produces new data, while discriminative AI categorizes or analyzes existing data.
"The difference between a large language model (LLM) and a small language model (SLM) is the number of variables in the model." - YES This statement is true. The primary distinction between an LLM and an SLM lies in the scale of parameters (variables) within the neural network. LLMs contain billions or even trillions of parameters, which enable them to capture complex linguistic patterns and perform broader tasks. SLMs have fewer parameters, making them faster but less capable of handling complex, context-rich tasks.
"Generative AI is a type of supervised learning." - NO
This statement is false. Generative AI models are typically trained using unsupervised or self-supervised learning methods. They learn by predicting missing or next elements in large text or image datasets rather than relying on labeled input-output pairs, which are used in supervised learning.
- Latest Upload
- 155NREMT.EMT.v2026-06-06.q125
- 123Juniper.JN0-232.v2026-06-06.q60
- 154Oracle.1D0-1057-25-D.v2026-06-03.q29
- 285NAHQ.CPHQ.v2026-06-03.q396
- 262CompTIA.220-1201.v2026-06-03.q196
- 163GIAC.GCFE.v2026-06-03.q78
- 160HIMSS.CPHIMS.v2026-06-03.q45
- 249Google.Professional-Cloud-Architect.v2026-06-03.q165
- 165HP.HPE7-A09.v2026-06-02.q48
- 178ACDIS.CCDS-O.v2026-06-02.q56
[×]
Download PDF File
Enter your email address to download Microsoft.AI-900-CN.v2026-03-07.q156 Practice Test
