AI-900-CN Exam Question 81
對於以下每個陳述,如果該陳述為真,請選擇「是」。否則,選擇“否”。 注意:每個正確的選擇都值得一分。


Correct Answer:

Explanation:

The Translator service, part of Microsoft Azure Cognitive Services, is designed specifically for text translation between multiple languages. It is a cloud-based neural machine translation service that supports more than 100 languages. According to Microsoft Learn's module "Translate text with the Translator service", this service provides two main capabilities: text translation and automatic language detection.
* "You can use the Translator service to translate text between languages." # YesThis statement is true.
The primary purpose of the Translator service is to translate text accurately and efficiently between supported languages, such as English to Spanish or French to Japanese. It maintains contextual meaning using neural machine translation models.
* "You can use the Translator service to detect the language of a given text." # YesThis statement is also true. The Translator service includes automatic language detection, which determines the source language before translation. For instance, if a user submits text in an unknown language, the service can identify it automatically before performing translation.
* "You can use the Translator service to transcribe audible speech into text." # NoThis statement is false.
Transcribing speech (audio) into text is a function of the Azure Speech service, specifically the Speech- to-Text API, not the Translator service.
Therefore, the Translator service is used for text translation and language detection, while speech transcription belongs to the Speech service.
AI-900-CN Exam Question 82
Azure OpenAI サービスを呼び出すために使用できる 2 つのツールはどれですか? それぞれの正解は完全な解決策を示します。
注: 各正解は 1 ポイントの価値があります。
注: 各正解は 1 ポイントの価値があります。
Correct Answer: B,C
The correct answers are B. Azure REST API and C. Azure SDK for Python.
The Azure OpenAI Service can be accessed using multiple development interfaces. According to Microsoft Learn documentation, developers can call the service via the Azure REST API, which provides direct HTTPS- based access to the model endpoints for tasks like completions, chat, embeddings, and image generation. This interface is platform-independent and supports integration with any system capable of making HTTP requests.
Additionally, Azure SDKs offer higher-level libraries for convenient integration into applications. The Azure SDK for Python and Azure SDK for JavaScript are both supported for Azure OpenAI interaction, allowing developers to authenticate with Azure credentials, send prompts, and receive model responses programmatically.
However, among the listed options, the REST API (B) and SDK for Python (C) are most explicitly referenced in the AI-900 learning modules and Microsoft documentation as standard tools to call Azure OpenAI services.
Option A (Azure CLI) is incorrect because the CLI is used primarily for provisioning and managing Azure resources, not for directly calling OpenAI model endpoints.
Therefore, based on the Azure AI-900 and OpenAI integration guidance, the correct answers are B. Azure REST API and C. Azure SDK for Python.
The Azure OpenAI Service can be accessed using multiple development interfaces. According to Microsoft Learn documentation, developers can call the service via the Azure REST API, which provides direct HTTPS- based access to the model endpoints for tasks like completions, chat, embeddings, and image generation. This interface is platform-independent and supports integration with any system capable of making HTTP requests.
Additionally, Azure SDKs offer higher-level libraries for convenient integration into applications. The Azure SDK for Python and Azure SDK for JavaScript are both supported for Azure OpenAI interaction, allowing developers to authenticate with Azure credentials, send prompts, and receive model responses programmatically.
However, among the listed options, the REST API (B) and SDK for Python (C) are most explicitly referenced in the AI-900 learning modules and Microsoft documentation as standard tools to call Azure OpenAI services.
Option A (Azure CLI) is incorrect because the CLI is used primarily for provisioning and managing Azure resources, not for directly calling OpenAI model endpoints.
Therefore, based on the Azure AI-900 and OpenAI integration guidance, the correct answers are B. Azure REST API and C. Azure SDK for Python.
AI-900-CN Exam Question 83
對於機器學習的進展,應該如何分割資料進行訓練和評估?
Correct Answer: B
https://docs.microsoft.com/en-us/azure/machine-learning/algorithm-module-reference/split-data The correct answer is B. Randomly split the data into rows for training and rows for evaluation.
According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and the Microsoft Learn module "Describe fundamental principles of machine learning on Azure", the process of developing a machine learning model involves dividing the available dataset into two or more parts-commonly training data and evaluation (or testing) data. The goal is to ensure that the model can learn patterns from one subset of the data (training set) and then be objectively tested on unseen data (evaluation set) to measure how well it generalizes to new situations.
The training dataset contains both features (the measurable inputs) and labels (the target outputs). The model learns from the patterns and relationships between these features and labels. The evaluation dataset also contains features and labels, but it is kept separate during the training phase. Once the model has been trained, it is tested on this unseen evaluation data to calculate metrics like accuracy, precision, recall, or F1 score.
Microsoft emphasizes that the data split should be random and based on rows, not columns. Each row represents a complete observation (for example, one customer record, one transaction, or one image).
Randomly splitting ensures that both subsets represent the same distribution of data, avoiding bias. Splitting by columns would separate features themselves, which would make the model training invalid.
The AI-900 materials often illustrate this using Azure Machine Learning's data preparation workflow, where data is randomly divided (commonly 70% for training and 30% for testing). This ensures the model learns from diverse examples and is fairly evaluated.
Therefore, the verified and correct approach, as per Microsoft's official guidance, is B. Randomly split the data into rows for training and rows for evaluation.
According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and the Microsoft Learn module "Describe fundamental principles of machine learning on Azure", the process of developing a machine learning model involves dividing the available dataset into two or more parts-commonly training data and evaluation (or testing) data. The goal is to ensure that the model can learn patterns from one subset of the data (training set) and then be objectively tested on unseen data (evaluation set) to measure how well it generalizes to new situations.
The training dataset contains both features (the measurable inputs) and labels (the target outputs). The model learns from the patterns and relationships between these features and labels. The evaluation dataset also contains features and labels, but it is kept separate during the training phase. Once the model has been trained, it is tested on this unseen evaluation data to calculate metrics like accuracy, precision, recall, or F1 score.
Microsoft emphasizes that the data split should be random and based on rows, not columns. Each row represents a complete observation (for example, one customer record, one transaction, or one image).
Randomly splitting ensures that both subsets represent the same distribution of data, avoiding bias. Splitting by columns would separate features themselves, which would make the model training invalid.
The AI-900 materials often illustrate this using Azure Machine Learning's data preparation workflow, where data is randomly divided (commonly 70% for training and 30% for testing). This ensures the model learns from diverse examples and is fairly evaluated.
Therefore, the verified and correct approach, as per Microsoft's official guidance, is B. Randomly split the data into rows for training and rows for evaluation.
AI-900-CN Exam Question 84
將該工具與 Azure 機器學習任務相符。
要回答,請將適當的工具從左側的列拖曳到右側的任務中。每個工具可以使用一次、多次或完全不使用注意:每個正確的配對都值得一分。

要回答,請將適當的工具從左側的列拖曳到右側的任務中。每個工具可以使用一次、多次或完全不使用注意:每個正確的配對都值得一分。

Correct Answer:

Explanation:

The correct matching aligns directly with the Microsoft Azure AI Fundamentals (AI-900) official study guide and Microsoft Learn modules under "Identify features of Azure Machine Learning". Azure Machine Learning provides a suite of tools that serve different functions within the model development lifecycle - from creating workspaces, to training models, to automating experimentation.
* The Azure portal # Create a Machine Learning workspace.The Azure portal is a web-based graphical interface for managing all Azure resources. According to Microsoft Learn, you use the portal to create and configure the Azure Machine Learning workspace, which acts as the central environment where datasets, experiments, models, and compute resources are organized. Creating a workspace through the portal involves specifying a subscription, resource group, and region - tasks that are part of the setup stage rather than model development.
* Machine Learning designer # Use a drag-and-drop interface used to train and deploy models.The Machine Learning designer (formerly "Azure ML Studio (classic)") provides a visual, no-code/low- code interface for building, training, and deploying machine learning pipelines. The designer uses a drag-and-drop workflow where users connect modules representing data transformations, model training, and evaluation. This tool is ideal for beginners and those who want to quickly experiment with machine learning concepts without writing code.
* Automated machine learning (Automated ML) # Use a wizard to select configurations for a machine learning run.Automated ML simplifies model creation by automatically selecting algorithms, hyperparameters, and data preprocessing options. Users interact through a guided wizard (within the Azure Machine Learning studio) that walks them through configuration steps such as selecting datasets, target columns, and performance metrics. The system then iteratively trains and evaluates multiple models to recommend the best-performing one.
Together, these tools streamline the machine learning workflow:
* Azure portal for setup and resource management,
* Machine Learning designer for visual model creation, and
* Automated ML for guided, automated model selection and tuning.
AI-900-CN Exam Question 85
在表單辨識器中使用自訂模型有什麼優點?
Correct Answer: B
Azure AI Form Recognizer extracts information from structured and semi-structured documents. A custom model in Form Recognizer allows an organization to train the system on its specific document layouts and data fields.
As per the AI-900 study guide, a key advantage of a custom model is its flexibility. It can be trained with a set of labeled examples (e.g., invoices, purchase orders, receipts) that match the company's format. Once trained, the model learns where to locate and extract fields such as invoice numbers, dates, or totals-regardless of layout differences between form types.
Option B is correct because a custom model can be trained to recognize a variety of form types, making it adaptable for diverse business processes.
Options A, C, and D are incorrect:
* A: Both prebuilt and custom models are cloud-based; on-premises deployment is not an exclusive feature.
* C: Custom models are not cheaper; they may involve additional training costs.
* D: Custom models do not always guarantee higher accuracy-accuracy depends on the training data quality.
As per the AI-900 study guide, a key advantage of a custom model is its flexibility. It can be trained with a set of labeled examples (e.g., invoices, purchase orders, receipts) that match the company's format. Once trained, the model learns where to locate and extract fields such as invoice numbers, dates, or totals-regardless of layout differences between form types.
Option B is correct because a custom model can be trained to recognize a variety of form types, making it adaptable for diverse business processes.
Options A, C, and D are incorrect:
* A: Both prebuilt and custom models are cloud-based; on-premises deployment is not an exclusive feature.
* C: Custom models are not cheaper; they may involve additional training costs.
* D: Custom models do not always guarantee higher accuracy-accuracy depends on the training data quality.
- Latest Upload
- 189CompTIA.220-1202.v2026-06-16.q110
- 125TheInstitutes.CPCU-500.v2026-06-16.q25
- 188ACAMS.CAMS7-CN.v2026-06-16.q170
- 192CBIC.CIC.v2026-06-15.q123
- 134Peoplecert.ITIL-4-Specialist-High-velocity-IT.v2026-06-15.q16
- 231HashiCorp.Terraform-Associate-004.v2026-06-15.q126
- 134Peoplecert.ITILFNDv5.v2026-06-15.q26
- 133Workday.Workday-Pro-HCM-Reporting.v2026-06-15.q28
- 136Fortinet.NSE5_SSE_AD-7.6.v2026-06-15.q17
- 358PMI.PMI-ACP.v2026-06-15.q523
[×]
Download PDF File
Enter your email address to download Microsoft.AI-900-CN.v2026-03-07.q156 Practice Test
