Microsoft Azure AI Fundamentals (AI-900日本語版) - AI-900日本語 Exam Practice Test

次の表に示す列を含むデータセットがあります。

他の数値列に基づいて ColumnE の値を予測する機械学習モデルがあります。
これはどのタイプのモデルですか?
Correct Answer: A
Explanation: Only visible for TrainingDump members. You can sign-up / login (it's free).
よくある質問(FAQ)のPDFファイルがあります。
FAQに基づいて会話型サポートシステムを作成する必要があります。
どのサービスを使うべきですか?
Correct Answer: A
Explanation: Only visible for TrainingDump members. You can sign-up / login (it's free).
Microsoft Foundryを使用して、自動車のナンバープレートを読み取るAIアプリケーションを開発する予定です。このアプリケーションの開発には、何を使用すべきでしょうか?
Correct Answer: B
文を正しく完成させる答えを選択してください。
Correct Answer:

Explanation:

In Azure OpenAI Service, the temperature parameter directly controls the creativity and determinism of responses generated by models such as GPT-3.5. According to the Microsoft Learn documentation for Azure OpenAI models, temperature is a numeric value (typically between 0.0 and 2.0) that determines how
"random" or "deterministic" the output should be.
* A lower temperature value (for example, 0 or 0.2) makes the model's responses more deterministic, meaning the same prompt consistently produces nearly identical outputs.
* A higher temperature value (for example, 0.8 or 1.0) encourages creativity and variety, causing the model to generate different phrasing or interpretations each time it responds.
When a question specifies the need for more deterministic responses, Microsoft's guidance is to decrease the temperature parameter. This adjustment makes the model focus on the most probable tokens (words) rather than exploring less likely options, improving reliability and consistency-ideal for business or technical applications where consistent answers are essential.
The other parameters serve different purposes:
* Frequency penalty reduces repetition of the same phrases but does not control randomness.
* Max response (max tokens) limits the maximum length of the generated output.
* Stop sequence defines specific tokens that tell the model when to stop generating text.
Thus, the correct and Microsoft-verified completion is:
"You can modify the Temperature parameter to produce more deterministic responses from a chat solution that uses the Azure OpenAI GPT-3.5 model."
文を完成させるには、回答領域で適切なオプションを選択します。
Correct Answer:

Explanation:

According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and the Microsoft Learn module "Prepare data for machine learning", feature engineering refers to the process of transforming raw data into meaningful features that can be effectively used by machine learning algorithms. This includes steps such as scaling, normalization, encoding categorical variables, handling missing values, and creating new features derived from existing ones.
The question states:
"Ensuring that the numeric variables in training data are on a similar scale." This directly describes a data normalization or standardization step, which is a core component of feature engineering. The purpose of scaling numeric variables is to ensure that all features contribute equally to the model's learning process. Without normalization, features with large numeric ranges (such as "income in dollars") could dominate smaller-scale features (like "age in years"), leading to biased model performance.
In Azure Machine Learning, this is typically done using the Normalize Data module or transformations in the data preparation stage. Microsoft Learn explains that normalization and feature scaling are applied before model training to ensure that gradient-based algorithms (such as regression or neural networks) converge more efficiently and produce more accurate results.
The other options are not correct:
* Data ingestion refers to collecting and importing data into a system.
* Feature selection involves choosing the most relevant features, not scaling them.
* Model training is the phase where the algorithm learns patterns from the processed data, which occurs after feature engineering.
Therefore, ensuring that numeric variables are on a similar scale is a step in Feature Engineering.
クライアントアプリケーションで使用されるサービスとして、Azure MachineLearningモデルをデプロイすることを計画しています。
モデルをデプロイする前に、どの3つのプロセスを順番に実行する必要がありますか?回答するには、適切なプロセスをプロセスのリストから回答領域に移動し、正しい順序で配置します。
Correct Answer:

Explanation:

The correct order of processes before deploying a model as a service is:
(1) Data preparation # (2) Model training # (3) Model evaluation.
According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and Microsoft Learn module "Explore the machine learning process", machine learning follows a structured lifecycle that involves several sequential stages. Before a model can be deployed, the data must be properly prepared, the model must be trained, and then its performance must be evaluated to ensure accuracy and reliability.
* Data Preparation:The first stage involves collecting, cleaning, and transforming raw data into a usable format. Azure Machine Learning provides tools like Data Wrangler, Data Labeling, and Data Transformation pipelines to ensure the dataset is accurate and consistent. As per Microsoft Learn, "data preparation is essential to remove noise, handle missing values, and split the dataset into training and testing sets." This step ensures the model learns from quality input.
* Model Training:In this step, algorithms are applied to the prepared training data to create a predictive model. The system learns patterns and relationships from the data. Azure Machine Learning allows model training using AutoML, custom code, or designer pipelines. The training process produces a model that can make predictions, but it still needs to be tested before deployment.
* Model Evaluation:Once trained, the model's performance is tested against unseen (test) data.
Evaluation metrics like accuracy, precision, recall, and F1-score are analyzed to verify if the model meets business and performance requirements. Microsoft Learn defines this stage as "assessing the model's performance to determine its readiness for deployment." After these three processes, the model can then be deployed as a web service using Azure Machine Learning endpoints. Model retraining happens later when new data becomes available, and data encryption is a security process, not part of model development steps.
文を完成させるには、回答領域で適切なオプションを選択します。
Correct Answer:

Explanation:

In the context of Microsoft Azure AI Fundamentals (AI-900) and general machine learning principles, regression refers to a type of supervised learning used to predict continuous numerical values based on historical data. The goal of regression is to model the relationship between input variables (features) and a continuous output variable (target).
In this scenario, the task is to predict how many vehicles will travel across a bridge on a given day. The number of vehicles is a numerical value that can vary continuously depending on factors such as time of day, weather, weekday/weekend, or traffic trends. Because the output is numeric and not categorical, this problem type clearly fits into regression analysis.
Microsoft's official learning content for AI-900, under "Identify features of regression and classification machine learning models," specifies that regression models are used to predict values such as sales forecasts, demand estimation, temperature prediction, or traffic volume-all of which share the same underlying objective: predicting a quantity.
To clarify other options:
* Classification is used when predicting categories or discrete classes, such as determining whether an email is spam or not spam, or if an image contains a cat or a dog.
* Clustering is an unsupervised learning technique used to group similar data points without predefined labels (for example, grouping customers by purchasing behavior).
Since predicting the number of vehicles results in a continuous numerical output, it aligns precisely with the regression workload type described in the Microsoft AI-900 study materials.
次の各ステートメントについて、ステートメントがtrueの場合は、[はい]を選択します。それ以外の場合は、[いいえ]を選択します。
注:正しい選択はそれぞれ1ポイントの価値があります。
Correct Answer:

Explanation:

Full Detailed Explanation (250-300 words):
* "You can fine-tune some Azure OpenAI models by using your own data." - YESThis statement is true.
Azure OpenAI allows customers to fine-tune certain models like GPT-3, GPT-3.5, and some embedding models with their own data. Fine-tuning customizes a model to perform better on specific tasks or match a company's domain terminology, tone, or context. According to Microsoft Learn's AI-
900 and Azure OpenAI documentation, fine-tuning is supported for approved use cases while maintaining Microsoft's Responsible AI oversight and compliance process.
* "Pretrained generative AI models are a component of Azure OpenAI." - YESThis statement is also true. Azure OpenAI provides access to pretrained large language and generative AI models such as GPT-3.5, GPT-4, Codex, and DALL E. These models are pretrained on vast datasets and made available via APIs, allowing developers to generate text, code, and images without needing to train their own models. This is a core feature of Azure OpenAI's service offering.
* "To build a solution that complies with Microsoft responsible AI principles, you must build and train your own model." - NOThis statement is false. Compliance with Microsoft Responsible AI principles (Fairness, Reliability & Safety, Privacy & Security, Inclusiveness, Transparency, Accountability) does not require building custom models. Prebuilt Azure AI and OpenAI services already align with Responsible AI standards. Developers simply need to use these services responsibly, applying governance and ethical design practices.
次の各ステートメントについて、ステートメントがtrueの場合は、[はい]を選択します。それ以外の場合は、[いいえ]を選択します。
注:正しい選択はそれぞれ1ポイントの価値があります。
Correct Answer:

Explanation:

Box 1: Yes
Automated machine learning, also referred to as automated ML or AutoML, is the process of automating the time consuming, iterative tasks of machine learning model development. It allows data scientists, analysts, and developers to build ML models with high scale, efficiency, and productivity all while sustaining model quality.
Box 2: No
Box 3: Yes
During training, Azure Machine Learning creates a number of pipelines in parallel that try different algorithms and parameters for you. The service iterates through ML algorithms paired with feature selections, where each iteration produces a model with a training score. The higher the score, the better the model is considered to " fit " your data. It will stop once it hits the exit criteria defined in the experiment.
Box 4: No
Apply automated ML when you want Azure Machine Learning to train and tune a model for you using the target metric you specify.
The label is the column you want to predict.
Reference:
https://azure.microsoft.com/en-us/services/machine-learning/automatedml/#features
文を正しく完成させる答えを選択してください。
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 ソリューションによって憎悪的な応答が返されるのを防ぐには、何を実装する必要がありますか?
Correct Answer: A
Explanation: Only visible for TrainingDump members. You can sign-up / login (it's free).
文を正しく完成させる答えを選択してください。
Correct Answer:

Explanation:

According to the Microsoft Azure AI Fundamentals (AI-900) curriculum and Microsoft Learn's modules on Computer Vision, object detection is the AI technique used to identify and locate multiple objects within an image. Unlike simple image classification, which only labels an entire image with a single category (for example, "This is a product"), object detection not only identifies the type of object but also pinpoints its exact position by providing bounding boxes and coordinates within the image.
In the scenario described - identifying the location of products on a conveyor belt - the system must be able to detect multiple items simultaneously and determine their spatial positions. Object detection algorithms (such as YOLO, Faster R-CNN, or SSD) are specifically designed for this purpose. This allows automation systems, like robotic arms or quality inspection systems, to track product locations in real time for sorting, packaging, or defect detection.
Let's evaluate the other options:
* Image classification only determines what is in the image, not where it is located. It cannot handle multiple objects or their positions.
* Image processing involves operations like resizing, filtering, or adjusting contrast, not understanding object placement.
* Optical character recognition (OCR) extracts text from images and documents, unrelated to locating physical items.
Thus, per Microsoft Learn's AI-900 guidance, object detection is the correct computer vision capability when a task requires both identification and spatial localization of items in an image or video stream.
# Final answer Object detection
0
0
0
0