AI-900-CN Exam Question 16
您將圖像發送到電腦視覺 API 並接收回展覽中顯示的註釋的圖像。

使用了哪種類型的電腦視覺?

使用了哪種類型的電腦視覺?
Correct Answer: A
Object detection is similar to tagging, but the API returns the bounding box coordinates (in pixels) for each object found. For example, if an image contains a dog, cat and person, the Detect operation will list those objects together with their coordinates in the image. You can use this functionality to process the relationships between the objects in an image. It also lets you determine whether there are multiple instances of the same tag in an image.
The Detect API applies tags based on the objects or living things identified in the image. There is currently no formal relationship between the tagging taxonomy and the object detection taxonomy. At a conceptual level, the Detect API only finds objects and living things, while the Tag API can also include contextual terms like
"indoor", which can't be localized with bounding boxes.
Reference:
https://docs.microsoft.com/en-us/azure/cognitive-services/computer-vision/concept-object-detection
The Detect API applies tags based on the objects or living things identified in the image. There is currently no formal relationship between the tagging taxonomy and the object detection taxonomy. At a conceptual level, the Detect API only finds objects and living things, while the Tag API can also include contextual terms like
"indoor", which can't be localized with bounding boxes.
Reference:
https://docs.microsoft.com/en-us/azure/cognitive-services/computer-vision/concept-object-detection
AI-900-CN Exam Question 17
將機器學習的類型與適當的場景相符。
要回答,請將適當的機器學習類型從左側列拖曳到右側的場景。每種機器學習類型可以使用一次、多次或完全不使用。
注意:每個正確的選擇都值得一分。

要回答,請將適當的機器學習類型從左側列拖曳到右側的場景。每種機器學習類型可以使用一次、多次或完全不使用。
注意:每個正確的選擇都值得一分。

Correct Answer:

Explanation:
According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and Microsoft Learn module "Describe features of common AI workloads", there are three primary supervised and unsupervised machine learning types: Regression, Classification, and Clustering. Each type of learning addresses a different kind of problem depending on the data and desired prediction output.
* Regression - Regression models are used to predict numeric, continuous values. The study guide specifies that "regression predicts a number." In the scenario "Predict how many minutes late a flight will arrive based on the amount of snowfall," the output (minutes late) is a continuous numeric value.
Therefore, this is a regression problem. Regression algorithms like linear regression or decision tree regression estimate relationships between variables and predict measurable quantities.
* Clustering - Clustering falls under unsupervised learning, where the model identifies natural groupings or patterns in unlabeled data. The official AI-900 training material states that "clustering is used to find groups or segments of data that share similar characteristics." The scenario "Segment customers into different groups to support a marketing department" fits this description because the goal is to group customers based on behavior or demographics without predefined labels. Thus, it is a clustering problem.
* Classification - Classification is a supervised learning method used to predict discrete categories or labels. The AI-900 content defines classification as "predicting which category an item belongs to." The scenario "Predict whether a student will complete a university course" requires a yes/no (binary) outcome, which is a classic classification problem. Examples include logistic regression, decision trees, or neural networks trained for categorical prediction.
In summary:
* Regression # Predicts continuous numeric outcomes.
* Clustering # Groups data by similarities without predefined labels.
* Classification # Predicts discrete or categorical outcomes.
Hence, the correct and verified mappings based on the official AI-900 study material are:
* Regression # Flight delay prediction
* Clustering # Customer segmentation
* Classification # Course completion prediction
AI-900-CN Exam Question 18
要完成句子,請在答案區中選擇適當的選項。


Correct Answer:

Explanation:

According to the Microsoft Azure AI Fundamentals (AI-900) study guide and official Microsoft Learn modules under "Describe features of common AI workloads", Conversational AI refers to technology that enables computers to engage in dialogue or conversation with users through natural language, whether by text or speech. The interactive answering of user-entered questions through a chat interface or virtual assistant is a direct example of a conversational AI workload.
Microsoft defines Conversational AI as systems that use natural language processing (NLP) and language understanding models to interpret what users are asking and respond appropriately. This includes chatbots, virtual assistants (like Cortana or Azure Bot Service), and automated customer service systems that simulate a human-like conversation. In this case, when an application answers questions that a user types interactively, the AI model is processing human language inputs, deriving intent, and generating meaningful replies - precisely what conversational AI is designed to do.
By contrast:
* Anomaly detection identifies unusual patterns in data, typically used for fraud detection or equipment monitoring - not interactive dialogue.
* Computer vision deals with interpreting images or video (e.g., object detection, facial recognition), unrelated to answering text-based questions.
* Forecasting uses historical data to predict future trends or outcomes, often in sales or demand prediction scenarios.
The AI-900 guide emphasizes that Conversational AI helps businesses improve customer interaction efficiency by offering instant, automated, and consistent responses. It enables real-time engagement 24/7 and integrates with tools such as Azure Bot Service, Azure Cognitive Service for Language, and QnA Maker (now part of Azure AI Language Service).
Therefore, based on the Microsoft Learn objectives and definitions from the official AI-900 curriculum, the interactive answering of user questions in an application is best categorized as Conversational AI.
AI-900-CN Exam Question 19
將機器學習模型與適當的欺騙相匹配。
要回答這個問題,請將相應的模型從左側的列中拖曳到右側的描述中。每個模型可以使用一次、多次或完全不使用。
注意:每場正確的比賽都值得一分。

要回答這個問題,請將相應的模型從左側的列中拖曳到右側的描述中。每個模型可以使用一次、多次或完全不使用。
注意:每場正確的比賽都值得一分。

Correct Answer:

Explanation:

According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and the Microsoft Learn module "Identify features of common machine learning types", the three main machine learning model types differ by their purpose and the kind of data they use - whether supervised (using labeled data) or unsupervised (using unlabeled data).
* Regression # A supervised machine learning model used to predict numeric values.Regression is a type of supervised learning that predicts continuous numerical outcomes. It learns the relationship between input features (independent variables) and a continuous target variable (dependent variable). Examples include predicting house prices, sales revenue, or temperature. The AI-900 curriculum emphasizes regression for "predicting numeric values based on known data," using algorithms such as linear regression or decision tree regression.
* Classification # A supervised machine learning model used to predict categories.Classification is also a supervised learning technique, but it predicts discrete outcomes (classes) instead of continuous values.
It assigns input data to one or more categories based on learned patterns. Typical examples include spam detection (spam vs. not spam), sentiment analysis (positive, neutral, negative), or predicting loan approval (approved/denied). The AI-900 study materials describe classification as "predicting a category or label for new observations."
* Clustering # An unsupervised machine learning model used to group similar entities based on features.
Clustering is an unsupervised learning approach, meaning it works on unlabeled data. It automatically identifies patterns and groups similar data points into clusters based on shared characteristics. Examples include customer segmentation (grouping customers by behavior) and grouping similar documents. The AI-900 learning module explains clustering as "discovering natural groupings in data without predefined labels." Thus, per Microsoft's official AI-900 learning objectives:
* Regression # Predicts numeric/continuous values.
* Classification # Predicts categories/labels.
* Clustering # Groups similar entities (unsupervised).
# Final Verified Configuration:
* Regression # Predict numeric values
* Classification # Predict categories
* Clustering # Group similar entities based on features
AI-900-CN Exam Question 20
機器學習中迴歸模型的例子是什麼?
Correct Answer: C
rrect answer is C. Predicting the sale price of a house based on historical data, the size of the house, and the number of bedrooms.
In machine learning, regression is a supervised learning technique used to predict continuous numeric values.
Microsoft's AI-900 study guide defines regression models as those that estimate relationships between variables-predicting a continuous outcome variable from one or more input features.
In this case, the house sale price is a continuous numeric value, and inputs such as size, location, and number of bedrooms are the features. Common regression algorithms include linear regression, decision tree regression, and boosted regression.
Other options represent different ML workloads:
* A involves segmentation by categories (classification or clustering).
* B represents clustering, grouping similar items without predefined labels.
* D represents computer vision, counting animals in images rather than predicting a numeric value.
Hence, the verified answer is C. Regression.
In machine learning, regression is a supervised learning technique used to predict continuous numeric values.
Microsoft's AI-900 study guide defines regression models as those that estimate relationships between variables-predicting a continuous outcome variable from one or more input features.
In this case, the house sale price is a continuous numeric value, and inputs such as size, location, and number of bedrooms are the features. Common regression algorithms include linear regression, decision tree regression, and boosted regression.
Other options represent different ML workloads:
* A involves segmentation by categories (classification or clustering).
* B represents clustering, grouping similar items without predefined labels.
* D represents computer vision, counting animals in images rather than predicting a numeric value.
Hence, the verified answer is C. Regression.
- Latest Upload
- 145Oracle.1D0-1057-25-D.v2026-06-03.q29
- 275NAHQ.CPHQ.v2026-06-03.q396
- 255CompTIA.220-1201.v2026-06-03.q196
- 158GIAC.GCFE.v2026-06-03.q78
- 154HIMSS.CPHIMS.v2026-06-03.q45
- 234Google.Professional-Cloud-Architect.v2026-06-03.q165
- 160HP.HPE7-A09.v2026-06-02.q48
- 169ACDIS.CCDS-O.v2026-06-02.q56
- 152Microsoft.AB-730.v2026-06-02.q31
- 215ASQ.CSSBB.v2026-06-02.q130
[×]
Download PDF File
Enter your email address to download Microsoft.AI-900-CN.v2026-03-07.q156 Practice Test
