AI-900-KR 문제 91
다음 각 문장에 대해, 문장이 사실이라면 '예'를 선택하세요. 그렇지 않으면 '아니요'를 선택하세요.
참고: 정답 하나당 1점입니다.

참고: 정답 하나당 1점입니다.

정답:

Explanation:

This question evaluates understanding of fundamental machine learning concepts as covered in the Microsoft Azure AI Fundamentals (AI-900) official study guide and Microsoft Learn module "Explore the machine learning process." These statements relate to data labeling, model evaluation practices, and performance metrics-three essential parts of building and assessing a machine learning model.
* Labelling is the process of tagging training data with known values # YesAccording to Microsoft Learn,
"Labeling is the process of tagging data with the correct output value so the model can learn relationships between inputs and outputs." This is essential for supervised learning, where models require historical data with known outcomes. For example, if training a model to recognize fruit images, each image is labeled as "apple," "banana," or "orange." Hence, this statement is true.
* You should evaluate a model by using the same data used to train the model # NoThe AI-900 guide stresses that using the same data for both training and evaluation can cause overfitting, where the model performs well on training data but poorly on unseen data. Instead, the dataset is split into training and testing (or validation) subsets. Evaluation must use test data that the model has never seen before to ensure an unbiased measure of performance. Therefore, this statement is false.
* Accuracy is always the primary metric used to measure a model's performance # NoMicrosoft Learn emphasizes that accuracy is only one metric and not always the best choice. Depending on the problem type, other metrics such as precision, recall, F1-score, or AUC (Area Under the Curve) may be more appropriate-especially in cases with imbalanced datasets. For example, in fraud detection, recall may be more important than accuracy. Thus, this statement is false.
AI-900-KR 문제 92
문장을 올바르게 완성하는 답을 선택하세요.


정답:

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.
AI-900-KR 문제 93
귀하는 전자상거래 사업을 위한 언어 이해 모델을 구축하고 있습니다.
모델의 의도된 범위를 벗어난 발언이 있을 경우 이를 감지할 수 있어야 합니다.
어떻게 해야 하나요?
모델의 의도된 범위를 벗어난 발언이 있을 경우 이를 감지할 수 있어야 합니다.
어떻게 해야 하나요?
정답: B
According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and the Microsoft Learn module "Identify features of conversational AI workloads on Azure", a Language Understanding (LUIS) model is designed to interpret natural language input by identifying intents (the purpose of an utterance) and entities (specific data items in the utterance).
Every LUIS model automatically includes a special intent called "None." This intent is used to handle utterances that do not fall into any of the model's defined intents. Adding examples of irrelevant or out-of- scope utterances to the None intent helps the model learn to recognize when a user's input does not match any existing categories.
For example, if your e-commerce chatbot handles intents such as "TrackOrder" and "CancelOrder," but a user says "What's your favorite color?", that input should be mapped to the None intent so the bot can respond appropriately, such as "I'm not sure how to answer that." The AI-900 curriculum emphasizes that including diverse None intent examples improves model robustness and prevents false matches, thereby enhancing user experience.
Other options are incorrect:
* A. Test the model by using new utterances: Testing is important but does not define how to detect out- of-scope inputs.
* C. Create a prebuilt task entity: Entities extract specific data but are unrelated to intent classification.
* D. Create a new model: Unnecessary; handling out-of-scope utterances is done within the same model via the None intent.
# Final answer: B. Add utterances to the None intent
Every LUIS model automatically includes a special intent called "None." This intent is used to handle utterances that do not fall into any of the model's defined intents. Adding examples of irrelevant or out-of- scope utterances to the None intent helps the model learn to recognize when a user's input does not match any existing categories.
For example, if your e-commerce chatbot handles intents such as "TrackOrder" and "CancelOrder," but a user says "What's your favorite color?", that input should be mapped to the None intent so the bot can respond appropriately, such as "I'm not sure how to answer that." The AI-900 curriculum emphasizes that including diverse None intent examples improves model robustness and prevents false matches, thereby enhancing user experience.
Other options are incorrect:
* A. Test the model by using new utterances: Testing is important but does not define how to detect out- of-scope inputs.
* C. Create a prebuilt task entity: Entities extract specific data but are unrelated to intent classification.
* D. Create a new model: Unnecessary; handling out-of-scope utterances is done within the same model via the None intent.
# Final answer: B. Add utterances to the None intent
AI-900-KR 문제 94
문장을 올바르게 완성하는 답을 선택하세요.


정답:

Explanation:

According to the Microsoft Azure AI Fundamentals (AI-900) Official Study Guide and the Microsoft Learn module "Explore fundamental principles of machine learning," regression is a type of supervised machine learning used to predict continuous numeric values.
In this question, the goal is to predict how many vehicles will travel across a bridge on a given day. The predicted output (the number of vehicles) is a continuous value-meaning it can take on any numerical value depending on various factors like time, weather, or day of the week. This makes it a regression problem, as the model learns from historical numeric data to estimate a continuous outcome.
How Regression Works:
Regression models find patterns between input features (such as temperature, weekday/weekend, traffic trends) and a numerical output (number of vehicles). Common regression algorithms include linear regression, decision trees for regression, and neural network regression. In Azure Machine Learning, regression tasks are used for business scenarios such as:
* Predicting sales revenue for a future month.
* Estimating house prices based on property characteristics.
* Forecasting energy consumption or traffic flow, as in this case.
Why not the other options?
* Classification: Used for predicting discrete categories (e.g., "spam" vs. "not spam"). It does not handle continuous numeric values.
* Clustering: An unsupervised learning technique used to group data points based on similarity without predefined labels (e.g., segmenting customers into groups).
Therefore, the task of predicting the number of vehicles-a numeric, continuous value-is a regression problem.
AI-900-KR 문제 95
Azure OpenAI에 대한 REST API 엔드포인트에 요청을 보내려면 어떤 형식을 사용해야 합니까?
정답: B
When interacting with the Azure OpenAI REST API, requests and responses are structured using the JSON format. According to the Microsoft Learn documentation on the Azure OpenAI REST API, JSON is the required format for sending prompts, configuration parameters (such as temperature, max_tokens, or top_p), and metadata to the API endpoint.
A typical request to an Azure OpenAI endpoint (for example, /openai/deployments/{model-name}/chat
/completions?api-version=2024-02-01) includes a JSON body similar to the following:
{
"messages": [
{"role": "system", "content": "You are an assistant."},
{"role": "user", "content": "Write a JavaScript function to add two numbers."}
],
"max_tokens": 200,
"temperature": 0.7
}
This JSON format allows for structured data exchange between the client and the server, ensuring that key- value pairs are properly parsed by the API.
* Option A (CSV): Used for storing tabular data, not suitable for API communication.
* Option C (XML): Though historically used in web services, Microsoft's modern APIs, including Azure OpenAI, rely on JSON.
* Option D (YAML): Common in configuration files but not for REST API payloads.
Therefore, per official Microsoft documentation and the AI-900 study guide, the correct and verified answer is B. JSON, as it is the standard format required when sending requests to the Azure OpenAI REST API endpoint.
A typical request to an Azure OpenAI endpoint (for example, /openai/deployments/{model-name}/chat
/completions?api-version=2024-02-01) includes a JSON body similar to the following:
{
"messages": [
{"role": "system", "content": "You are an assistant."},
{"role": "user", "content": "Write a JavaScript function to add two numbers."}
],
"max_tokens": 200,
"temperature": 0.7
}
This JSON format allows for structured data exchange between the client and the server, ensuring that key- value pairs are properly parsed by the API.
* Option A (CSV): Used for storing tabular data, not suitable for API communication.
* Option C (XML): Though historically used in web services, Microsoft's modern APIs, including Azure OpenAI, rely on JSON.
* Option D (YAML): Common in configuration files but not for REST API payloads.
Therefore, per official Microsoft documentation and the AI-900 study guide, the correct and verified answer is B. JSON, as it is the standard format required when sending requests to the Azure OpenAI REST API endpoint.
- 다른 버전
- 1002Microsoft.AI-900-KR.v2026-05-11.q134
- 996Microsoft.AI-900-KR.v2026-03-02.q135
- 1383Microsoft.AI-900-KR.v2026-02-07.q121
- 1324Microsoft.AI-900-KR.v2026-01-01.q158
- 최근 업로드
- 130SAP.C_S4CPB_2602.v2026-06-13.q7
- 151SAP.C-S4CS-2602.v2026-06-13.q29
- 170Salesforce.Slack-Con-201.v2026-06-13.q86
- 175Oracle.1Z1-136.v2026-06-13.q46
- 155BCS.BAPv5.v2026-06-13.q62
- 140PaloAltoNetworks.SSE-Engineer.v2026-06-13.q18
- 140SAP.C_CR125.v2026-06-13.q26
- 137Proofpoint.PPAN01.v2026-06-13.q19
- 144Workday.Workday-Pro-Time-Tracking.v2026-06-13.q19
- 165API.API-1184.v2026-06-12.q40
[×]
PDF 파일 다운로드
메일 주소를 입력하시고 다운로드 하세요. Microsoft.AI-900-KR.v2026-01-05.q136 모의시험 시험자료를 다운 받으세요.
