AI-900 中文 無料問題集「Microsoft Azure AI Fundamentals (AI-900中文版)」

您需要根據使用者提示產生圖像。您應該使用哪種 Azure OpenAI 模型?

解説: (JPNTest メンバーにのみ表示されます)
對於以下每個陳述,如果該陳述為真,請選擇「是」。否則,選擇“否”。 注意:每個正確的選擇都值得一分。
正解:

Explanation:

According to the Microsoft Azure AI Fundamentals (AI-900) study guide and Azure Machine Learning documentation, Automated Machine Learning (AutoML) is a feature designed to help users build, train, and tune machine learning models automatically without requiring deep knowledge of programming or data science.
* First Statement: "Automated machine learning provides you with the ability to include custom Python scripts in a training pipeline."This is False (No). AutoML automates the model selection and tuning process but does not allow the inclusion of custom Python scripts within its workflow. Custom Python integration is supported in Azure Machine Learning designer pipelines or SDK-based training, not in AutoML.
* Second Statement: "Automated machine learning implements machine learning solutions without the need for programming experience."This is True (Yes). One of AutoML's core benefits is that it enables non-programmers to train and evaluate models by simply selecting data, choosing a target column, and letting Azure automatically test algorithms and hyperparameters. This aligns with Microsoft's AI-900 objective to democratize AI development.
* Third Statement: "Automated machine learning provides you with the ability to visually connect datasets and modules on an interactive canvas."This is False (No). That feature belongs to Azure Machine Learning Designer, not AutoML. The designer offers a drag-and-drop visual interface for connecting datasets and modules, whereas AutoML provides a wizard-driven approach focused on automation.
變壓器模型中的三個階段是什麼?每個正確答案都代表一個完整的解決方案。
注意:每個正確答案都值一分。

正解:A、D、E 解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
您計劃使用 Azure AI Foundry 建立一個 AI 應用程式。該解決方案將部署到專用虛擬機器上。您應該使用哪種部署選項?

當你設計一個人工智慧系統來評估是否應該批准貸款時,用於做出決定的因素應該是可以解釋的。
這是 Microsoft 負責任的人工智慧指導原則的一個例子?

解説: (JPNTest メンバーにのみ表示されます)
您應該使用什麼來從合約的掃描圖像中提取詳細資訊?

解説: (JPNTest メンバーにのみ表示されます)
要完成句子,請在答案區中選擇適當的選項。
正解:

Explanation:

According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and the Microsoft Learn module "Describe core concepts of machine learning on Azure", labeling is the process of assigning correct output values (labels) to training data before model training. In supervised learning, every input in the dataset must be paired with its corresponding output so the algorithm can learn the relationship between the two.
In this scenario, the task is to assign classes to images before training a classification model-for example, marking images as "cat," "dog," or "bird." This process defines the target variable (label) that the model will later predict. During training, the classification model uses these labeled examples to learn patterns and distinguish between categories.
Microsoft's official materials clearly define labeling as:
"The process of tagging data with the correct answer so that the model can learn to make predictions." Labeling is a crucial early step in the machine learning lifecycle, especially for image classification and natural language processing (NLP) tasks. Without accurate labels, the model cannot learn correctly and its predictions will be unreliable.
Let's briefly clarify why the other options are incorrect:
* Evaluation refers to testing the model after training to measure accuracy or performance using metrics like precision, recall, or F1 score.
* Feature engineering involves creating or selecting the most relevant input features from raw data but does not involve tagging output labels.
* Hyperparameter tuning adjusts parameters (like learning rate or depth of a tree) to optimize model performance after labeling and training have begun.
Thus, assigning classes to images prior to model training is definitively a Labeling task.
選出正確完成句子的答案。
正解:

Explanation:

During model training, a portion of the dataset (commonly 70-80%) is used to teach the machine learning algorithm to identify patterns and relationships between input features and the output label. The remaining data (usually 20-30%) is held back to evaluate the model's performance and verify its accuracy on unseen data. This ensures the model is not overfitted (too tightly fitted to training data) and can generalize well to new inputs.
Key steps highlighted in Microsoft Learn materials:
* Model Training: Use the training data to fit the model - the algorithm learns relationships between input features and labels.
* Model Evaluation: Use the test or validation data to assess the accuracy, precision, recall, or other metrics of the trained model.
* Model Deployment: Once validated, the model is deployed to make real-world predictions.
Other options explained:
* Feature engineering: Involves preparing and transforming input data, not splitting datasets for training and testing.
* Time constraints: Not a machine learning process step.
* Feature stripping: Not a recognized ML concept.
* MLflow models: Refers to an open-source tool for tracking and managing models, not dataset splitting or training.
Thus, when you use a portion of the dataset to prepare and train a machine learning model, and retain the rest to verify results, the process is known as model training.
您計劃使用機器學習設計器部署 Azure 機器學習模型 您應該依序執行哪四個動作?要回答,請將適當的操作從操作清單移至答案區域,並按正確的順序排列。
正解:

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 standard workflow for creating and deploying a machine learning model - especially within Azure Machine Learning Designer - follows a structured sequence of steps to ensure that the model is trained effectively and evaluated correctly.
Here's the detailed breakdown of the correct order:
* Import and prepare a dataset:This is always the first step in the machine learning lifecycle. The dataset is imported into Azure Machine Learning and cleaned or preprocessed. Preparation might include handling missing values, normalizing data, removing outliers, and encoding categorical variables. This ensures the dataset is ready for modeling.
* Split the data randomly into training data and validation data:The dataset is then divided into two parts
- the training set and the validation (or testing) set. Typically, around 70-80% of the data is used for training and 20-30% for validation. This step ensures that the model can be evaluated on unseen data later, preventing overfitting.
* Train the model:During this stage, the machine learning algorithm learns patterns from the training data. Azure Machine Learning Designer provides multiple algorithms (classification, regression, clustering, etc.) that can be applied using "Train Model" components.
* Evaluate the model against the validation dataset:Finally, the trained model's performance is tested using the validation dataset. Evaluation metrics such as accuracy, precision, recall, or RMSE (depending on the model type) are calculated to assess how well the model generalizes to new data.
The incorrect option - "Evaluate the model against the original dataset" - is not used in proper ML workflows, because evaluating on the same data used for training would give misleadingly high accuracy due to overfitting.
應該使用哪種服務從掃描文件中自動提取文字、鍵值對和表格資料?

解説: (JPNTest メンバーにのみ表示されます)
您應該使用哪種 Azure 機器學習功能來快速建立和部署預測模型而無需大量編碼?

解説: (JPNTest メンバーにのみ表示されます)
選出正確完成句子的答案。
正解:

Explanation:

According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and Microsoft Learn module "Identify features of common machine learning types", regression is a supervised machine learning technique used to predict continuous numerical values based on one or more input features. In this scenario, the task is to predict a vehicle's miles per gallon (MPG)-a continuous numeric value-based on several measurable factors such as weight, engine power, and other specifications.
Regression models learn the mathematical relationship between input variables (independent features) and a numeric target variable (dependent outcome). Common regression algorithms include linear regression, decision tree regression, and support vector regression. In the example, the model would analyze historical data of vehicles and learn patterns that map characteristics (like engine size, horsepower, and weight) to fuel efficiency. Once trained, it can predict the MPG for a new vehicle configuration.
The other options describe different problem types:
* Classification predicts discrete categories (for example, whether a car is "fuel efficient" or "not fuel efficient"), not continuous values.
* Clustering is an unsupervised learning method that groups data points based on similarities without predefined labels, not predictive modeling.
* Anomaly detection identifies data points that significantly deviate from normal patterns, such as detecting engine sensor failures or fraudulent transactions.
Since predicting MPG involves estimating a numeric value within a continuous range, regression is the most appropriate model type.
In summary, per AI-900 training content, regression models are used when the output variable is numeric, classification for categorical outputs, and clustering for pattern discovery. Therefore, predicting miles per gallon based on vehicle features is a textbook example of a regression problem in Azure Machine Learning.
選出正確完成句子的答案。
正解:

Explanation:

According to the Microsoft Azure AI Fundamentals (AI-900) study materials and Microsoft's Responsible AI guidelines, customers must obtain approval based on their intended usage before accessing and deploying Azure OpenAI Service. This requirement ensures that Microsoft upholds its commitment to Responsible AI principles, which include fairness, reliability and safety, privacy and security, inclusiveness, transparency, and accountability.
The Azure OpenAI Service provides access to powerful language models such as GPT series and Codex, which can generate, summarize, and understand natural language and code. Because of the potential for misuse-such as generating harmful content, misinformation, or unethical automation-Microsoft enforces a use case review and approval process before granting customers access to the service. This process involves submitting an application describing the intended purpose, deployment method, and compliance measures.
Only after Microsoft validates that the proposed use aligns with responsible AI practices will access be approved.
This aligns with Microsoft's documented commitment that "customers are required to submit an application that describes their intended use of the Azure OpenAI Service," ensuring that all deployments follow ethical and legal standards. This approval step helps maintain transparency and prevent harmful or non-compliant use cases such as deepfake generation, biased automation, or malicious chatbot deployment.
Other options listed in the question are incorrect:
* Commit to a minimum level of expenditure - Microsoft does not require financial commitments for ethical approval.
* Pay an upfront fee - Payment is handled through normal Azure billing, not a special fee.
* Provide credit card details - Not a responsible AI requirement; this is standard for any Azure subscription.
Therefore, the correct and verified answer per Microsoft's Responsible AI framework and Azure AI-900 study
貴公司想要製造一台瓶子回收機。回收機必須自動識別形狀正確的瓶子並拒絕所有其他物品。
公司應該使用哪種類型的人工智慧工作負載?

解説: (JPNTest メンバーにのみ表示されます)

弊社を連絡する

我々は12時間以内ですべてのお問い合わせを答えます。

オンラインサポート時間:( UTC+9 ) 9:00-24:00
月曜日から土曜日まで

サポート:現在連絡