Welcome to TestSimulate

Pass Your Next Certification Exam Fast!

Everything you need to prepare, learn & pass your certification exam easily.

365 days free updates. First attempt guaranteed success.

Microsoft Azure AI Fundamentals (AI-900中文版) (AI-900 中文) Free Practice Test

Question 1
將 AI 工作負載類型與適當的場景相匹配。
若要回答,請將適當的工作負載類型從左側列拖曳到右側的場景。每種工作負載類型可以使用一次、多次或完全不使用。
注意:每個正確的選擇都值得一分。
Correct Answer:

Explanation:

This question tests understanding of AI workload types, a fundamental topic in the Microsoft Azure AI Fundamentals (AI-900) curriculum. Each workload type-Computer Vision, Natural Language Processing, Machine Learning (Regression), and Anomaly Detection-serves a specific function within the AI landscape, as explained in Microsoft Learn's module "Describe features of common AI workloads."
* Computer Vision enables computers to "see" and interpret visual information such as images or videos.
Identifying handwritten letters requires analyzing image patterns, shapes, and strokes, which is a classic image recognition task. Azure's Computer Vision API and Custom Vision services are specifically designed for such tasks.
* Natural Language Processing (NLP) involves interpreting human language, both written and spoken.
Determining the sentiment of a social media post (positive, negative, or neutral) is a typical text analytics use case within NLP, often implemented using Azure's Text Analytics for Sentiment Analysis.
* Anomaly Detection focuses on identifying data points that deviate from normal patterns. Detecting fraudulent credit card payments requires finding transactions that are unusual compared to historical spending behavior. Azure's Anomaly Detector API applies machine learning to identify such irregularities.
* Machine Learning (Regression) is used for predicting continuous numerical outcomes based on historical data. Estimating next month's toy sales is a regression problem-an example of supervised learning where the model predicts future sales values from past sales data.
Thus, based on Microsoft's official AI-900 learning objectives, the correct mapping of workloads to scenarios is:
* Computer Vision # Identify handwritten letters
* NLP # Predict sentiment
* Anomaly Detection # Fraud detection
* Machine Learning (Regression) # Predict toy sales
Question 2
將機器學習的類型與適當的場景相符。
要回答,請將適當的機器學習類型從左側列拖曳到右側的場景。每種機器學習類型可以使用一次、多次或完全不使用。
注意:每個正確的選擇都值得一分。
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
Question 3
對於以下每個陳述,如果該陳述為真,請選擇「是」。否則,選擇“否”。 注意:每個正確的選擇都值得一分。
Correct Answer:

Explanation:

Box 1: No
Box 2: Yes
Box 3: Yes
Anomaly detection encompasses many important tasks in machine learning:
Identifying transactions that are potentially fraudulent.
Learning patterns that indicate that a network intrusion has occurred.
Finding abnormal clusters of patients.
Checking values entered into a system.
Reference:
https://docs.microsoft.com/en-us/azure/machine-learning/studio-module-reference/anomaly-detection
Question 4
應配置哪個參數才能在使用 Azure OpenAI GPT-3.5 模型的聊天解決方案的回應中產生更多樣化的令牌?

Correct Answer: A
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 5
您有一個網路聊天機器人,可以提供來自 QnA Maker 知識庫的回應。
您需要確保機器人使用使用者回饋來隨著時間的推移提高回應的相關性。
你該用什麼?

Correct Answer: D
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 6
選出正確完成句子的答案。
Correct Answer:

Explanation:

According to the Microsoft Azure AI Fundamentals (AI-900) Official Study Guide and the Microsoft Learn module "Explore computer vision in Microsoft Azure," computer vision is a field of artificial intelligence that enables computers to interpret and understand visual information from the world - such as images or videos.
In this scenario, the task is to count the number of animals in an area based on a video feed. This requires the system to:
* Detect the presence of animals in each frame of the video (object detection).
* Track and count them across multiple frames as they move.
These are classic computer vision tasks, as they involve analyzing visual inputs (video or image data) and identifying objects (in this case, animals). Azure provides services such as Azure Computer Vision, Custom Vision, and Video Indexer, which can perform object detection, counting, and activity recognition using AI models trained on visual datasets.
Why the other options are incorrect:
* Forecasting: Involves predicting future values based on historical data (e.g., predicting sales or weather), not analyzing video feeds.
* Knowledge mining: Focuses on extracting insights from large text-based document repositories, not images or videos.
* Anomaly detection: Identifies unusual patterns in numeric or time-series data, not visual objects.
Therefore, identifying and counting animals in video footage falls under computer vision, since it uses AI to visually detect, classify, and quantify objects in real-time or recorded feeds.
Question 7
選出正確完成句子的答案。
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", a regression model is a type of supervised machine learning model that is used to predict continuous numeric values based on one or more input variables (features).
In supervised learning, models are trained using labeled data, where each input record has a known target value (label). For regression specifically, the label represents a numeric quantity - such as price, age, temperature, or sales figures. The model learns to approximate a function that maps input variables to numeric outputs.
For example:
* Predicting house prices based on size, location, and number of rooms.
* Predicting monthly sales revenue from marketing spend and seasonality.
* Forecasting temperature based on historical weather data.
In Azure Machine Learning Designer and AutoML, when building a regression model, the label column must therefore be of numeric data type (integer or float). If the label were categorical (for example, "yes/no" or
"approved/denied"), the appropriate model type would be classification, not regression.
To contrast with other options:
* Boolean - used in binary classification problems (true/false outcomes).
* Datetime - used for time series forecasting, not standard regression labels.
* Text - used as input features for NLP models, not as regression targets.
Hence, when configuring a regression task in Azure, ensuring the target variable (label) is numeric is a fundamental requirement. The model's performance metrics-such as Mean Absolute Error (MAE), Root Mean Squared Error (RMSE), and R²-also rely on numeric computations.
Question 8
您有一個 Azure 機器學習模型,它使用臨床數據來預測患者是否患有疾病。
您清理並轉換臨床數據。
您需要確保模型的準確性可以證明。
接下來你該做什麼?

Correct Answer: C
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 9
將 Azure 認知服務與適當的 AI 工作負載相符。
要回答,請將適當的服務從左側列拖曳到右側的工作負載。每項服務可以使用一次、多次或完全不使用。
注意:每場正確的比賽都值得一分。
Correct Answer:

Explanation:

The correct matches are Custom Vision, Form Recognizer, and Face - each corresponding to a distinct capability under Azure Cognitive Services as described in the Microsoft Azure AI Fundamentals (AI-900) official study guide and Microsoft Learn modules on Computer Vision workloads.
* Custom Vision # Identify objects in an imageThe Custom Vision service is part of the Azure Cognitive Services suite that enables developers to train custom image classification and object detection models.
Unlike the prebuilt Computer Vision API, Custom Vision allows users to upload their own labeled images and teach the model to recognize specific objects relevant to their business context. The AI-900 syllabus explains that Custom Vision is ideal for tasks such as identifying products on a shelf, categorizing images, or detecting defects in manufacturing.
* Form Recognizer # Automatically import data from an invoice to a databaseForm Recognizer is a document processing AI service that extracts structured data from forms, receipts, and invoices. It uses optical character recognition (OCR) combined with layout and key-value pair detection to automatically capture information such as invoice numbers, amounts, and vendor names. The AI-900 study materials highlight this service under the Document Intelligence category, emphasizing its ability to streamline data entry and business automation workflows by importing extracted data directly into databases or applications.
* Face # Identify people in an imageThe Face service provides advanced facial detection and recognition capabilities. It can locate faces in images, compare similarities between faces, identify known individuals, and even detect facial attributes such as age or emotion. The AI-900 course classifies this under Computer Vision services for person identification and security-related use cases such as access control or identity verification.
Thus, each mapping aligns precisely with the AI-900 official learning outcomes on Cognitive Services capabilities:
* Custom Vision # Object recognition
* Form Recognizer # Data extraction from forms
* Face # People identification
# Final verified configuration:
* Custom Vision # Identify objects in an image
* Form Recognizer # Automatically import data from an invoice to a database
* Face # Identify people in an image
Question 10
表單辨識器服務可以在哪兩種場景下使用?每個正確答案都代表一個完整的解決方案。
注意:每個正確的選擇都值得一分。

Correct Answer: A,B
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 11
您計劃將文字分析 API 功能應用於技術支援票務系統。
將文字分析 API 功能與適當的自然語言處理場景相匹配。
要回答,請將相應的功能從左側的列拖曳到右側的場景中。每個功能可以使用一次、多次或完全不使用。
注意:每個正確的選擇都值得一分。
Correct Answer:

Explanation:

Box1: Sentiment analysis
Sentiment Analysis is the process of determining whether a piece of writing is positive, negative or neutral.
Box 2: Broad entity extraction
Broad entity extraction: Identify important concepts in text, including key Key phrase extraction/ Broad entity extraction: Identify important concepts in text, including key phrases and named entities such as people, places, and organizations.
Box 3: Entity Recognition
Named Entity Recognition: Identify and categorize entities in your text as people, places, organizations, date
/time, quantities, percentages, currencies, and more. Well-known entities are also recognized and linked to more information on the web.
Reference:
https://docs.microsoft.com/en-us/azure/architecture/data-guide/technology-choices/natural-language-processing
https://azure.microsoft.com/en-us/services/cognitive-services/text-analytics
Question 12
選出正確完成句子的答案。
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 classification technique is a type of supervised machine learning used to predict which category or class a new observation belongs to, based on patterns learned from labeled training data.
In this scenario, a banking system that predicts whether a loan will be repaid is dealing with a binary outcome-either the loan will be repaid or will not be repaid. These two possible results represent distinct classes, making this problem a classic example of binary classification. During training, the model learns from historical data containing features such as customer income, credit score, loan amount, and repayment history, along with labeled outcomes (repaid or defaulted). After training, it can classify new applications into one of these two categories.
The AI-900 curriculum distinguishes between three key supervised and unsupervised learning approaches:
* Classification: Predicts discrete categories (e.g., spam/not spam, fraud/not fraud, will repay/won't repay).
* Regression: Predicts continuous numerical values (e.g., house prices, sales forecast, temperature).
* Clustering: Groups data based on similarity without predefined labels (e.g., customer segmentation).
Since the banking problem focuses on predicting a categorical outcome rather than a continuous numeric value, it fits squarely into the classification domain. In Azure Machine Learning, such tasks can be performed using algorithms like Logistic Regression, Decision Trees, or Support Vector Machines (SVMs), all configured for categorical prediction.
Therefore, per Microsoft's official AI-900 learning objectives, a banking system predicting whether a loan will be repaid represents a classification type of machine learning problem.