AI-900-CN Exam Question 51
您可以使用 Azure 機器學習設計器來發佈推理管道。
您應該使用哪兩個參數來使用管道?每個正確答案都代表了解決方案的一部分。
注意:每個正確的選擇都值得一分。
您應該使用哪兩個參數來使用管道?每個正確答案都代表了解決方案的一部分。
注意:每個正確的選擇都值得一分。
Correct Answer: C,D
According to the Microsoft Azure AI Fundamentals (AI-900) Official Study Guide and the Microsoft Learn module "Explore Azure Machine Learning", when you publish an inference pipeline (a deployed web service for real-time predictions) using Azure Machine Learning designer, you make the model accessible as a RESTful endpoint. Consumers-such as applications, scripts, or services-interact with this endpoint to submit data and receive predictions.
To securely access this deployed pipeline, two critical parameters are required:
* REST endpoint (Option D):The REST endpoint is a URL automatically generated when the inference pipeline is deployed. It defines the network location where clients send HTTP POST requests containing input data (usually in JSON format). The endpoint routes these requests to the deployed model, which processes the data and returns prediction results. The REST endpoint acts as the primary access point for consuming the model's inferencing capability programmatically.
* Authentication key (Option C):The authentication key (or API key) is a security token provided by Azure to ensure that only authorized users or systems can access the endpoint. When invoking the REST service, the key must be included in the request header (typically as the value of the Authorization header). This mechanism enforces secure, authenticated access to the deployed model.
The other options are incorrect:
* A. The model name is not required to consume the endpoint; it is used internally within the workspace.
* B. The training endpoint is used for training pipelines, not for inference.
Therefore, according to Microsoft's official AI-900 learning objectives and Azure Machine Learning documentation, when consuming a published inference pipeline, you must use both the REST endpoint (D) and the authentication key (C). These parameters ensure secure, controlled, and programmatic access to the deployed AI model for real-time predictions.
To securely access this deployed pipeline, two critical parameters are required:
* REST endpoint (Option D):The REST endpoint is a URL automatically generated when the inference pipeline is deployed. It defines the network location where clients send HTTP POST requests containing input data (usually in JSON format). The endpoint routes these requests to the deployed model, which processes the data and returns prediction results. The REST endpoint acts as the primary access point for consuming the model's inferencing capability programmatically.
* Authentication key (Option C):The authentication key (or API key) is a security token provided by Azure to ensure that only authorized users or systems can access the endpoint. When invoking the REST service, the key must be included in the request header (typically as the value of the Authorization header). This mechanism enforces secure, authenticated access to the deployed model.
The other options are incorrect:
* A. The model name is not required to consume the endpoint; it is used internally within the workspace.
* B. The training endpoint is used for training pipelines, not for inference.
Therefore, according to Microsoft's official AI-900 learning objectives and Azure Machine Learning documentation, when consuming a published inference pipeline, you must use both the REST endpoint (D) and the authentication key (C). These parameters ensure secure, controlled, and programmatic access to the deployed AI model for real-time predictions.
AI-900-CN Exam Question 52
應配置哪個參數才能在使用 Azure OpenAI GPT-3.5 模型的聊天解決方案的回應中產生更多樣化的令牌?
Correct Answer: C
In Azure OpenAI Service, model behavior during text or chat generation is controlled by several parameters, such as temperature, max tokens, top_p, presence penalty, and frequency penalty. According to Microsoft Learn's documentation for Azure OpenAI GPT models, the presence penalty influences how likely the model is to introduce new or diverse tokens in its responses.
Specifically, the presence penalty discourages the model from repeating previously used tokens, encouraging it to explore new topics or ideas instead of sticking to existing ones. Increasing the presence penalty value typically results in more diverse and creative outputs, while lowering it makes responses more repetitive or focused.
Option analysis:
* A. Max response (Max tokens): Controls the maximum length of the generated response, not its diversity.
* B. Past messages included: Defines how much chat history the model considers for context; it doesn't affect diversity directly.
* C. Presence penalty: Encourages novelty and introduces new tokens-this is correct for increasing response variety.
* D. Stop sequence: Specifies a sequence of characters or tokens where the model should stop generating output.
Specifically, the presence penalty discourages the model from repeating previously used tokens, encouraging it to explore new topics or ideas instead of sticking to existing ones. Increasing the presence penalty value typically results in more diverse and creative outputs, while lowering it makes responses more repetitive or focused.
Option analysis:
* A. Max response (Max tokens): Controls the maximum length of the generated response, not its diversity.
* B. Past messages included: Defines how much chat history the model considers for context; it doesn't affect diversity directly.
* C. Presence penalty: Encourages novelty and introduces new tokens-this is correct for increasing response variety.
* D. Stop sequence: Specifies a sequence of characters or tokens where the model should stop generating output.
AI-900-CN Exam Question 53
選出正確完成句子的答案。


Correct Answer:

Explanation:
Text extraction.
According to the Microsoft Azure AI Fundamentals (AI-900) study guide and Microsoft Learn documentation for Azure AI Vision (formerly Computer Vision), text extraction-also known as Optical Character Recognition (OCR)-is the computer vision capability that detects and extracts printed or handwritten text from images and video frames.
In this scenario, a traffic monitoring system collects vehicle registration numbers (license plates) from CCTV footage. These registration numbers are alphanumeric text that must be read and converted into digital form for processing, storage, or analysis. The Azure AI Vision service's OCR (text extraction) feature performs this function. It analyzes each frame from the video feed, detects text regions (the license plates), and converts the visual text into machine-readable text data.
This process is widely used in Automatic Number Plate Recognition (ANPR) systems that support law enforcement, toll booths, and parking management solutions. The OCR model can handle variations in font, lighting, and angle to accurately extract license plate numbers.
The other options describe different vision capabilities:
* Image classification assigns an image to a general category (e.g., "car," "truck," or "bike"), not text extraction.
* Object detection identifies and locates objects in images using bounding boxes (e.g., detecting the car itself), but not the text written on the car.
* Spatial analysis tracks people or objects in a defined physical space (e.g., counting individuals entering a building), not reading text.
Therefore, for a traffic monitoring system that identifies vehicle registration numbers from CCTV footage, the most accurate Azure AI Vision capability is Text extraction (OCR).
AI-900-CN Exam Question 54
正確地完成句子。


Correct Answer:

Explanation:
Features
The correct completion of the sentence is:
"In a machine learning model, the data that is used as inputs are called features." According to the Microsoft Azure AI Fundamentals (AI-900) official study materials and Microsoft Learn module "Identify features of common machine learning types," the term feature refers to an individual measurable property or characteristic of the data that is used by a machine learning model to make predictions or decisions.
In supervised and unsupervised learning, features serve as the inputs to the model. They are the variables that represent the information the algorithm learns from. For example, if a model predicts the price of a house, the features might include square footage, number of bedrooms, location, and age of the property. These features feed into the model so that it can learn the relationship between inputs and outputs.
Microsoft Learn further defines these key concepts:
* Features: Input variables (independent variables) used by the model to learn patterns.
* Labels: The desired output or target variable that the model is trained to predict (e.g., price, category).
* Instances: Individual rows or data records within the dataset (each instance has multiple features).
* Functions: Algorithms or mathematical operations used during training and prediction - not data inputs.
Therefore, among the provided options - features, functions, labels, instances - only features accurately describe the data elements used as inputs for training or inference in a machine learning model.
In summary, within the AI-900 learning context:
* Features = inputs to the model.
* Labels = outputs for supervised learning.
* Instances = examples (rows) of data.
AI-900-CN Exam Question 55
您正在處理比賽中跑者的照片。
您需要閱讀跑步者襯衫上的號碼才能識別照片中的跑步者。
您應該使用哪種類型的電腦視覺?
您需要閱讀跑步者襯衫上的號碼才能識別照片中的跑步者。
您應該使用哪種類型的電腦視覺?
Correct Answer: B
According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and the Microsoft Learn module "Identify features of computer vision workloads", Optical Character Recognition (OCR) is a core capability within the computer vision domain that enables systems to detect and extract text from images or documents. OCR technology can identify printed or handwritten characters in photographs, scanned documents, or camera feeds, and convert them into machine-readable text.
In this scenario, the task is to read the numbers on runners' shirts in race photos. These numbers are textual or numeric characters embedded within images. OCR is specifically designed for this purpose - to locate and recognize characters within visual data and convert them into usable text. Once extracted, those numbers can be cross-referenced with a database to identify each runner.
Let's analyze why the other options are incorrect:
* A. Facial recognition focuses on identifying individuals based on unique facial features, not reading text or numbers.
* C. Semantic segmentation classifies each pixel of an image into categories (for example, separating road, sky, and people), but it doesn't read text.
* D. Object detection identifies and locates objects within an image (such as detecting people or vehicles) but does not extract readable text or numbers.
Therefore, since the task involves reading textual or numeric content from an image, the appropriate type of computer vision to use is Optical Character Recognition (OCR).
Reference:Microsoft Learn - Identify features and uses of computer vision in Azure AI services (Cognitive Services - Optical Character Recognition).
In this scenario, the task is to read the numbers on runners' shirts in race photos. These numbers are textual or numeric characters embedded within images. OCR is specifically designed for this purpose - to locate and recognize characters within visual data and convert them into usable text. Once extracted, those numbers can be cross-referenced with a database to identify each runner.
Let's analyze why the other options are incorrect:
* A. Facial recognition focuses on identifying individuals based on unique facial features, not reading text or numbers.
* C. Semantic segmentation classifies each pixel of an image into categories (for example, separating road, sky, and people), but it doesn't read text.
* D. Object detection identifies and locates objects within an image (such as detecting people or vehicles) but does not extract readable text or numbers.
Therefore, since the task involves reading textual or numeric content from an image, the appropriate type of computer vision to use is Optical Character Recognition (OCR).
Reference:Microsoft Learn - Identify features and uses of computer vision in Azure AI services (Cognitive Services - Optical Character Recognition).
- 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
- 126Microsoft.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
