AI-900-CN Exam Question 111
選出正確完成句子的答案。


Correct Answer:

Explanation:

According to the Microsoft Azure AI Fundamentals (AI-900) Official Study Guide and the Microsoft Learn module "Explore fundamental principles of machine learning," regression is a type of supervised machine learning used to predict continuous numeric values.
In this question, the goal is to predict how many vehicles will travel across a bridge on a given day. The predicted output (the number of vehicles) is a continuous value-meaning it can take on any numerical value depending on various factors like time, weather, or day of the week. This makes it a regression problem, as the model learns from historical numeric data to estimate a continuous outcome.
How Regression Works:
Regression models find patterns between input features (such as temperature, weekday/weekend, traffic trends) and a numerical output (number of vehicles). Common regression algorithms include linear regression, decision trees for regression, and neural network regression. In Azure Machine Learning, regression tasks are used for business scenarios such as:
* Predicting sales revenue for a future month.
* Estimating house prices based on property characteristics.
* Forecasting energy consumption or traffic flow, as in this case.
Why not the other options?
* Classification: Used for predicting discrete categories (e.g., "spam" vs. "not spam"). It does not handle continuous numeric values.
* Clustering: An unsupervised learning technique used to group data points based on similarity without predefined labels (e.g., segmenting customers into groups).
Therefore, the task of predicting the number of vehicles-a numeric, continuous value-is a regression problem.
AI-900-CN Exam Question 112
簡潔地完成句子。


Correct Answer:

Explanation:

According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and the Microsoft Learn module "Identify features of common AI workloads", OCR (Optical Character Recognition) is a Computer Vision technology that detects and extracts printed or handwritten text from images and scanned documents.
OCR allows organizations and individuals to convert physical or image-based text into machine-readable, editable, and searchable digital text.
In the context of this question, a historian working with old newspaper articles or archival documents would use OCR to digitize printed content. For instance, the historian can scan or photograph old newspaper pages, and then use an OCR tool-such as Azure Computer Vision's OCR API-to automatically recognize and extract the textual content from those images. This process enables the historian to store, edit, and analyze the content digitally without manually typing everything.
OCR works by using deep learning algorithms trained on thousands of text samples. The system analyzes patterns, shapes, and spatial relationships of characters to identify text accurately, even from low-quality or aged paper documents. Once extracted, the digital text can be indexed, translated, or processed further using Natural Language Processing (NLP) tools for content analysis.
Now, addressing the other options:
* Facial analysis is used to detect emotions, age, or gender from human faces-irrelevant to text digitization.
* Image classification identifies entire images by categories (e.g., cat, car, flower).
* Object detection identifies and locates multiple objects within an image but doesn't extract text.
Therefore, per the AI-900 learning objectives under the Computer Vision workload, the correct and verified completion is:
AI-900-CN Exam Question 113
您有一個包含客戶評論的網站。
您需要以英語儲存評論,並透過識別每個使用者的地理位置,以使用者各自的語言向使用者呈現評論。
您應該使用哪種類型的自然語言處理工作負載?
您需要以英語儲存評論,並透過識別每個使用者的地理位置,以使用者各自的語言向使用者呈現評論。
您應該使用哪種類型的自然語言處理工作負載?
Correct Answer: A
According to the Microsoft Azure AI Fundamentals (AI-900) syllabus and Microsoft Learn module "Describe features of natural language processing (NLP) workloads on Azure," translation is a core NLP workload that converts text from one language into another while maintaining meaning and context.
In this scenario, the website stores reviews in English and must present them in the user's native language based on geographical location. This directly requires a translation workload, which uses Azure Cognitive Services - specifically, the Translator service - to automatically translate content dynamically for each user.
Other options explained:
* B. Language modeling involves predicting the next word in a sentence or understanding linguistic patterns; it's used in model training, not translation.
* C. Key phrase extraction identifies main ideas in text, not language conversion.
* D. Speech recognition converts spoken words into written text but does not perform translation or handle geographic adaptation.
Microsoft's Translator service supports real-time text translation, multi-language detection, and context preservation, making it ideal for global websites. The AI-900 study guide emphasizes translation as one of the most common NLP workloads, enabling applications to break language barriers and enhance accessibility for diverse audiences.
Therefore, based on official Microsoft Learn material, the correct answer is:
# A. translation.
In this scenario, the website stores reviews in English and must present them in the user's native language based on geographical location. This directly requires a translation workload, which uses Azure Cognitive Services - specifically, the Translator service - to automatically translate content dynamically for each user.
Other options explained:
* B. Language modeling involves predicting the next word in a sentence or understanding linguistic patterns; it's used in model training, not translation.
* C. Key phrase extraction identifies main ideas in text, not language conversion.
* D. Speech recognition converts spoken words into written text but does not perform translation or handle geographic adaptation.
Microsoft's Translator service supports real-time text translation, multi-language detection, and context preservation, making it ideal for global websites. The AI-900 study guide emphasizes translation as one of the most common NLP workloads, enabling applications to break language barriers and enhance accessibility for diverse audiences.
Therefore, based on official Microsoft Learn material, the correct answer is:
# A. translation.
AI-900-CN Exam Question 114
要完成句子,請在答案區中選擇適當的選項。


Correct Answer:

Explanation:
Reliability & Safety
https://en.wikipedia.org/wiki/Tay_(bot)
"To build trust, it ' s critical that AI systems operate reliably, safely, and consistently under normal circumstances and in unexpected conditions. These systems should be able to operate as they were originally designed, respond safely to unanticipated conditions, and resist harmful manipulation. It ' s also important to be able to verify that these systems are behaving as intended under actual operating conditions. How they behave and the variety of conditions they can handle reliably and safely largely reflects the range of situations and circumstances that developers anticipate during design and testing. We believe that rigorous testing is essential during system development and deployment to ensure AI systems can respond safely in unanticipated situations and edge cases, don ' t have unexpected performance failures, and don ' t evolve in ways that are inconsistent with original expectations"
AI-900-CN Exam Question 115
要完成句子,請在答案區中選擇適當的選項。


Correct Answer:

Explanation:
Confidence.
According to the Microsoft Azure AI Fundamentals (AI-900) Official Study Guide and the Microsoft Learn module "Explore computer vision in Microsoft Azure," the confidence score represents the calculated probability that a model's prediction is correct. In image classification, when an AI model analyzes an image and assigns it to a specific category, it also produces a confidence value-a numerical probability (usually between 0 and 1) indicating how certain the model is about its prediction.
For example, if an image classification model identifies an image as a "cat" with a confidence of 0.92, it means the model is 92% certain that the image depicts a cat. The confidence value helps developers and users understand the model's certainty level about its classification output.
Microsoft Learn emphasizes that in Azure Cognitive Services-such as the Custom Vision Service-each prediction result includes both the predicted label (class) and a confidence score. These confidence scores are essential for evaluating model performance and determining thresholds for automated decisions (e.g., accepting predictions only above a 0.8 probability).
Let's evaluate the other options:
* Accuracy: This is an overall performance metric measuring the percentage of correct predictions across the dataset, not a probability for a single prediction.
* Root Mean Square Error (RMSE): This is a metric for regression models, not classification tasks. It measures average error magnitude between predicted and actual values.
* Sentiment: This is a type of prediction (positive, negative, neutral) in text analysis, not a probability metric.
Therefore, based on Microsoft's AI-900 training materials and Azure Cognitive Services documentation, the calculated probability of a correct image classification is called Confidence, which expresses how sure the model is about its prediction for a specific input.
- Other Version
- 451Microsoft.AI-900-CN.v2026-04-21.q135
- 374Microsoft.AI-900-CN.v2026-03-07.q156
- 584Microsoft.AI-900-CN.v2025-12-26.q125
- Latest Upload
- 132Microsoft.AB-731.v2026-07-03.q32
- 127Microsoft.AI-900-CN.v2026-07-03.q148
- 147GIAC.GICSP.v2026-07-03.q43
- 187EC-COUNCIL.212-89.v2026-07-03.q125
- 153Salesforce.Plat-Admn-201.v2026-07-02.q74
- 273AAPC.CPC.v2026-07-02.q224
- 164Cisco.820-605.v2026-07-02.q83
- 164Cisco.300-435.v2026-07-02.q95
- 131PaloAltoNetworks.XSIAM-Analyst.v2026-07-02.q35
- 222IIA.IIA-CIA-Part3-CN.v2026-07-02.q222
[×]
Download PDF File
Enter your email address to download Microsoft.AI-900-CN.v2026-07-03.q148 Practice Test
