AI-900-KR 문제 56
사용자의 텍스트 입력을 기반으로 다음과 같은 작업을 수행하기 위해 자연어 처리(NLP)를 사용하는 챗봇을 만들고 있습니다.
* 고객 주문을 접수합니다.
* 지원 문서를 검색합니다.
* 주문 상태 업데이트를 검색합니다.
어떤 유형의 NLP를 사용해야 합니까?
* 고객 주문을 접수합니다.
* 지원 문서를 검색합니다.
* 주문 상태 업데이트를 검색합니다.
어떤 유형의 NLP를 사용해야 합니까?
정답: C
In the Microsoft Azure AI Fundamentals (AI-900) curriculum, language modeling is described as a core component of Natural Language Processing (NLP) that enables an AI system to understand, interpret, and generate human language in context. The AI-900 Microsoft Learn module "Identify features of Natural Language Processing workloads" explains that language modeling is used to analyze user input and determine intent - essential for conversational systems like chatbots.
In this question, the chatbot must:
* Accept customer orders.
* Retrieve support documents.
* Retrieve order status updates.
All these tasks require the bot to understand user intent and context from text input. This understanding process is driven by language modeling, which predicts meaning and structure within sentences, enabling the system to decide what action to take next.
Microsoft Learn distinguishes between various NLP techniques:
* Sentiment analysis detects emotional tone (positive/negative/neutral).
* Translation converts text between languages.
* Named Entity Recognition (NER) identifies specific entities like names or dates.However, none of these individually allow a system to process commands, requests, or user intents - that capability is part of language modeling, which powers LUIS (Language Understanding Intelligent Service) or the modern Azure Cognitive Service for Language.
Therefore, to build a chatbot that can interpret commands and respond contextually - such as processing orders or retrieving documents - you must use language modeling.
In this question, the chatbot must:
* Accept customer orders.
* Retrieve support documents.
* Retrieve order status updates.
All these tasks require the bot to understand user intent and context from text input. This understanding process is driven by language modeling, which predicts meaning and structure within sentences, enabling the system to decide what action to take next.
Microsoft Learn distinguishes between various NLP techniques:
* Sentiment analysis detects emotional tone (positive/negative/neutral).
* Translation converts text between languages.
* Named Entity Recognition (NER) identifies specific entities like names or dates.However, none of these individually allow a system to process commands, requests, or user intents - that capability is part of language modeling, which powers LUIS (Language Understanding Intelligent Service) or the modern Azure Cognitive Service for Language.
Therefore, to build a chatbot that can interpret commands and respond contextually - such as processing orders or retrieving documents - you must use language modeling.
AI-900-KR 문제 57
문장을 완성하려면 답변란에서 적절한 옵션을 선택하세요.


정답:

Explanation:

According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and Microsoft Learn module "Identify features of regression machine learning", regression is a type of supervised machine learning used when the target variable (the value you want to predict) is a continuous numeric value.
In this scenario, the task is to predict how many hours of overtime a delivery person will work based on the number of orders received. Both the input (number of orders) and the output (hours of overtime) are numeric variables. Since the goal is to estimate a quantitative value rather than categorize or group data, this is a classic example of a regression problem.
Regression models analyze the relationship between variables to make numerical predictions. For example, the model might learn that each additional 20 orders increases overtime by about two hours. Common algorithms used for regression include linear regression, decision tree regression, and boosted regression models. These models produce outputs such as "expected overtime = 5.6 hours," which are continuous numeric results.
To contrast with the other options:
* Classification is used for predicting categories or labels, such as "overtime required" vs. "no overtime," or "high-risk" vs. "low-risk." It deals with discrete outputs rather than continuous numbers.
* Clustering is an unsupervised learning approach used to group similar data points based on shared characteristics, such as grouping delivery staff by performance patterns or customer types.
As emphasized in Microsoft's Responsible AI and Machine Learning Fundamentals learning paths, regression models are ideal for numeric forecasting problems such as predicting sales, revenue, demand, or working hours.
Therefore, the correct answer is: Regression.
Reference:Microsoft Learn - Identify the types of machine learning models: Regression, Classification, and Clustering (AI-900 Learning Path)
AI-900-KR 문제 58
간단한 사용자 질의에 답변하는 데 도움이 되는 비즈니스 챗봇용 콘텐츠를 제공해야 합니다.
QnA Maker를 사용하여 질문과 답변 텍스트를 만드는 세 가지 방법은 무엇인가요? 각 정답은 완전한 해결책을 제시합니다.
참고: 정답 하나당 1점입니다.
QnA Maker를 사용하여 질문과 답변 텍스트를 만드는 세 가지 방법은 무엇인가요? 각 정답은 완전한 해결책을 제시합니다.
참고: 정답 하나당 1점입니다.
정답: A,C,E
According to the Microsoft Azure AI Fundamentals (AI-900) Official Study Guide and the Microsoft Learn module "Explore conversational AI in Microsoft Azure," the QnA Maker (now integrated into the Azure AI Language Service as Custom Question Answering) is used to create, train, and publish a knowledge base of question-and-answer pairs that can power a chatbot.
There are three primary methods to create Q & A content:
* Generate questions and answers from an existing webpage (Option A):QnA Maker can automatically extract question-answer pairs from structured or semi-structured data sources like FAQs, product manuals, or support webpages.
* Manually enter questions and answers (Option C):Users can create Q & A pairs directly in the QnA Maker portal or Azure Language Studio, enabling custom answers to be crafted manually.
* Import chit-chat content from a predefined data source (Option E):QnA Maker provides predefined
"chit-chat" datasets that let a bot handle casual conversation (e.g., greetings or small talk) naturally.
The other options are incorrect:
* B. Use automated machine learning - AutoML is for predictive modeling, not knowledge extraction.
* D. Connect the bot to Cortana - This is a channel integration, not a method of content creation.
There are three primary methods to create Q & A content:
* Generate questions and answers from an existing webpage (Option A):QnA Maker can automatically extract question-answer pairs from structured or semi-structured data sources like FAQs, product manuals, or support webpages.
* Manually enter questions and answers (Option C):Users can create Q & A pairs directly in the QnA Maker portal or Azure Language Studio, enabling custom answers to be crafted manually.
* Import chit-chat content from a predefined data source (Option E):QnA Maker provides predefined
"chit-chat" datasets that let a bot handle casual conversation (e.g., greetings or small talk) naturally.
The other options are incorrect:
* B. Use automated machine learning - AutoML is for predictive modeling, not knowledge extraction.
* D. Connect the bot to Cortana - This is a channel integration, not a method of content creation.
AI-900-KR 문제 59
문장을 올바르게 완성하는 답을 선택하세요.


정답:

Explanation:

In Microsoft's Responsible AI framework, the Reliability and Safety principle ensures that AI systems perform consistently, safely, and as intended across diverse conditions - even when faced with incomplete, unusual, or unexpected data. Correctly handling unusual or missing values in a dataset directly demonstrates this principle, as it helps prevent faulty predictions, biased results, or unsafe system behaviors.
According to the Microsoft Learn Responsible AI module (from the AI-900 and AI-102 study paths), a reliable AI model should maintain its performance when encountering data anomalies. This includes validating inputs, managing missing or extreme values, and testing models to ensure they behave as expected in real-world scenarios. Such practices make AI systems robust and trustworthy, which aligns exactly with the Reliability and Safety principle.
The other Responsible AI principles address different concerns:
* Inclusiveness: Ensures AI empowers and serves all users equitably.
* Privacy and Security: Focuses on safeguarding personal data and preventing unauthorized access.
* Transparency: Ensures that AI decisions are understandable and explainable to users.
While all principles are essential, managing data integrity and system stability-including how a model responds to missing or anomalous values-is primarily a matter of reliability and safety. It ensures the AI behaves predictably and minimizes risks of errors or unintended harm.
Therefore, the correct completion of the sentence is:
"Correctly handling unusual or missing values is an example of the application of the Reliability and Safety principle for Responsible AI."
AI-900-KR 문제 60
다음 각 문장에 대해, 문장이 사실이라면 '예'를 선택하세요. 그렇지 않으면 '아니요'를 선택하세요.
참고: 정답 하나당 1점입니다.

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

정답:

Explanation:
Azure Bot Service and Azure Cognitive Services can be integrated. # Yes
* Azure Bot Service engages with customers in a conversational manner. # Yes
* Azure Bot Service can import frequently asked questions (FAQ) to question and answer sets. # Yes
\
All three statements are true, as confirmed by the Microsoft Azure AI Fundamentals (AI-900) official study guide and Microsoft Learn module "Explore conversational AI." The Azure Bot Service is Microsoft's platform for building, deploying, and managing intelligent bots that can communicate naturally with users across various channels (web, Teams, Facebook Messenger, etc.).
* Azure Bot Service and Azure Cognitive Services can be integrated # YesMicrosoft Learn specifies that Azure Bot Service can be enhanced with Azure Cognitive Services such as Language Understanding (LUIS), QnA Maker, and Speech Services to add intelligence. For example, integration with LUIS allows bots to understand user intent and context, while QnA Maker helps them respond accurately to FAQs. As stated in the official documentation: "The Azure Bot Service can be combined with Cognitive Services to create bots that understand language, speech, and meaning."
* Azure Bot Service engages with customers in a conversational manner # YesThe primary function of Azure Bot Service is to create conversational AI agents that interact naturally with users. These bots simulate human-like dialogue using text or speech. According to Microsoft Learn, "Bots created using Azure Bot Service communicate with users in a conversational format through natural language."
* Azure Bot Service can import frequently asked questions (FAQ) to question and answer sets # YesAzure Bot Service can integrate with the QnA Maker (now part of Azure Cognitive Service for Language) to automatically import FAQs from existing documents or web pages and generate a knowledge base of question-answer pairs. This allows the bot to respond intelligently to customer queries.
In conclusion, Azure Bot Service supports intelligent, conversational interaction, integrates seamlessly with Cognitive Services, and can use QnA Maker to import and manage FAQ-based knowledge sets-making all three statements true.
- 다른 버전
- 2020Microsoft.AI-900-KR.v2026-05-11.q134
- 1501Microsoft.AI-900-KR.v2026-03-02.q135
- 1922Microsoft.AI-900-KR.v2026-02-07.q121
- 4334Microsoft.AI-900-KR.v2026-01-05.q136
- 1704Microsoft.AI-900-KR.v2026-01-01.q158
- 최근 업로드
- 1330Salesforce.AP-223.v2026-09-01.q94
- 975Splunk.SPLK-5001.v2026-09-01.q60
- 1099Cisco.300-540.v2026-09-01.q62
- 2931Microsoft.MS-102-KR.v2026-09-01.q239
- 1456Microsoft.AI-900-KR.v2026-09-01.q162
- 4179Microsoft.AZ-104-KR.v2026-08-31.q361
- 1777Microsoft.PL-400-KR.v2026-08-31.q166
- 2390USGBC.LEED-Green-Associate-KR.v2026-08-31.q214
- 148HP.HPE0-V27-KR.v2026-08-31.q76
- 131Microsoft.DP-700-KR.v2026-08-31.q62
[×]
PDF 파일 다운로드
메일 주소를 입력하시고 다운로드 하세요. Microsoft.AI-900-KR.v2026-09-01.q162 모의시험 시험자료를 다운 받으세요.
