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

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

정답:

Explanation:
You can communicate with a bot by using email # No
You can communicate with a bot by using Microsoft Teams # Yes
You can communicate with a bot by using a webchat interface # Yes
These answers are based on the Microsoft Azure AI Fundamentals (AI-900) Official Study Guide and the Microsoft Learn module "Explore conversational AI in Microsoft Azure." The Azure Bot Service allows developers to build, test, deploy, and manage intelligent chatbots that can interact with users through various channels. Channels are communication platforms or interfaces that connect users to bots. Once a bot is built and published through the Azure Bot Service, it can be connected to multiple channels such as Microsoft Teams, webchat, Skype, Facebook Messenger, Direct Line, Slack, and others.
Let's evaluate each statement:
* You can communicate with a bot by using email # NoAzure Bot Service does not support direct interaction via email as a channel. Bots are designed for real-time or conversational interactions through messaging or voice-based platforms, not asynchronous email communication.
* You can communicate with a bot by using Microsoft Teams # YesMicrosoft Teams is one of the primary channels supported by Azure Bot Service. Bots can be integrated directly into Teams to handle chat-based conversations, provide information, automate workflows, or assist users interactively within Teams.
* You can communicate with a bot by using a webchat interface # YesThe Web Chat channel is another core feature of Azure Bot Service. It allows embedding the bot into a website or web application using the Web Chat control or the Direct Line API, enabling users to chat directly from a browser interface.
In summary, Azure Bot Service supports real-time conversational interfaces like Teams and webchat, but not email.
AI-900-KR 문제 72
다음 각 문장에 대해, 문장이 사실이라면 '예'를 선택하세요. 그렇지 않으면 '아니요'를 선택하세요.
참고: 정답 하나당 1점입니다.

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

정답:

Explanation:
< A webchat bot can interact with users visiting a website # Yes
Automatically generating captions for pre-recorded videos is an example of conversational AI # No A smart device in the home that responds to questions such as "What will the weather be like today?" is an example of conversational AI # Yes
\ These answers are based on the Microsoft Azure AI Fundamentals (AI-900) Official Study Guide and the Microsoft Learn module "Explore conversational AI in Microsoft Azure."
1. A webchat bot can interact with users visiting a website # Yes
This statement is true. A webchat bot is a key example of conversational AI, which allows users to communicate with an intelligent system through natural language. The Azure Bot Service supports a webchat channel, enabling website visitors to ask questions or get assistance directly through a chat interface embedded on a webpage. This allows businesses to provide 24/7 automated support and interactive engagement without human intervention.
2. Automatically generating captions for pre-recorded videos is an example of conversational AI # No This is incorrect because automatically generating captions involves speech-to-text transcription, which falls under speech recognition and not conversational AI. While it uses AI to convert audio into text, it does not involve interactive communication or natural language dialogue. This task would be handled by Azure AI's Speech service, not the conversational AI framework.
3. A smart device in the home that responds to questions such as "What will the weather be like today?" is an example of conversational AI # Yes This is true. Smart assistants like those found in home devices (e.g., voice-activated systems) use conversational AI technologies to process spoken language (using natural language processing and speech recognition) and generate appropriate responses. This interaction represents a classic example of conversational AI, as it allows human-like dialogue between a user and an AI system.
# Final Answers:
* Webchat bot interacting with users # Yes
* Auto-captioning videos # No
* Smart home device answering questions # Yes
AI-900-KR 문제 73
귀하는 전자상거래 사업을 위한 대화형 언어 이해 모델을 구축하고 있었습니다.
모델의 의도된 범위를 벗어난 발언이 있을 경우 이를 감지할 수 있어야 합니다.
어떻게 해야 하나요?
모델의 의도된 범위를 벗어난 발언이 있을 경우 이를 감지할 수 있어야 합니다.
어떻게 해야 하나요?
정답: C
In Conversational Language Understanding (CLU), a core service within Azure AI Language, intents represent the goals or purposes behind user utterances (for example, "Track my order" or "Cancel my subscription"). However, in real-world scenarios, users often provide inputs that do not match any defined intent. To handle such cases gracefully, Microsoft recommends including a "None" intent that captures out-of- scope utterances - text that doesn't belong to any other intent in your model.
According to the Microsoft Learn module: "Build a Conversational Language Understanding app", the None intent serves as a catch-all or fallback category for utterances that the model should ignore or respond to with a default message (e.g., "I'm sorry, I don't understand that."). By training the model with multiple examples of irrelevant or unrelated utterances in this intent, you improve its ability to distinguish between valid and invalid user inputs.
The other options are incorrect:
* A. Export the model: Exporting only saves or transfers the model; it does not influence how the model detects irrelevant utterances.
* B. Create a new model: A new model would not inherently solve out-of-scope detection unless properly trained with a None intent.
* D. Create a prebuilt task entity: Entities identify specific data (like dates or products) within valid intents, not irrelevant utterances.
Thus, the correct approach to ensure that your CLU model can detect utterances outside its intended scope is to add examples of unrelated or off-topic phrases to the None intent. This improves classification accuracy and prevents incorrect intent matches.
# Correct answer: C. Add utterances to the None intent
According to the Microsoft Learn module: "Build a Conversational Language Understanding app", the None intent serves as a catch-all or fallback category for utterances that the model should ignore or respond to with a default message (e.g., "I'm sorry, I don't understand that."). By training the model with multiple examples of irrelevant or unrelated utterances in this intent, you improve its ability to distinguish between valid and invalid user inputs.
The other options are incorrect:
* A. Export the model: Exporting only saves or transfers the model; it does not influence how the model detects irrelevant utterances.
* B. Create a new model: A new model would not inherently solve out-of-scope detection unless properly trained with a None intent.
* D. Create a prebuilt task entity: Entities identify specific data (like dates or products) within valid intents, not irrelevant utterances.
Thus, the correct approach to ensure that your CLU model can detect utterances outside its intended scope is to add examples of unrelated or off-topic phrases to the None intent. This improves classification accuracy and prevents incorrect intent matches.
# Correct answer: C. Add utterances to the None intent
AI-900-KR 문제 74
문장을 올바르게 완성하는 답을 선택하세요.


정답:

Explanation:
Privacy and security.
According to Microsoft's Responsible AI Principles, implementing filters to block harmful or inappropriate content in a Generative AI chat solution demonstrates a commitment to the Privacy and Security principle.
This principle ensures that AI systems are designed and operated in a way that protects users, their data, and society from harm.
When a chat system uses Generative AI models (like Azure OpenAI's GPT-based services), there is a risk that the model might produce unsafe, offensive, or sensitive content. Microsoft addresses this through content filters and safety systems, which automatically detect and block violent, hate-based, or sexually explicit outputs. This is part of responsible deployment practices to ensure that user interactions remain safe, private, and compliant with ethical standards.
Implementing these filters aligns with the Privacy and Security principle because it:
* Protects users from exposure to harmful or abusive content.
* Ensures that conversations are safeguarded against malicious or unsafe use.
* Upholds user trust by maintaining a safe digital environment for all participants.
Let's briefly clarify why the other options are incorrect:
* Fairness deals with ensuring unbiased treatment and equitable outcomes in AI decisions.
* Transparency focuses on explaining how AI systems make decisions.
* Accountability refers to human oversight and responsibility for AI actions.
Thus, content filtering mechanisms are explicitly an example of Privacy and Security, as they protect users and data from harm or misuse while maintaining ethical AI behavior.
Therefore, the verified correct answer is Privacy and security.
AI-900-KR 문제 75
문장을 올바르게 완성하는 답을 선택하세요.


정답:

Explanation:

This question refers to a system that monitors a user's emotions or expressions-in this case, identifying whether a kiosk user is annoyed-through a video feed. According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and Microsoft Learn module "Identify Azure services for computer vision," this scenario falls under facial analysis, which is a capability of Azure AI Vision or the Face API.
Facial analysis involves detecting human faces in images or video and analyzing facial features to interpret emotions, expressions, age, gender, or facial landmarks. The AI model does not try to identify who the person is but rather interprets how they appear or feel. For example, facial analysis can detect emotions such as happiness, anger, sadness, or surprise, which allows applications to infer a user's engagement or frustration level while interacting with a system.
Option review:
* Face detection: Identifies the presence and location of a face in an image but does not interpret expressions or emotions.
* Facial recognition: Matches a detected face to a known individual's identity (for authentication or security), not for emotion detection.
* Optical character recognition (OCR): Extracts text from images or scanned documents and has no relation to human emotion or facial features.
Therefore, determining whether a kiosk user is annoyed, happy, or frustrated involves emotion detection within facial analysis, making Facial analysis the correct answer.
This aligns with AI-900's definition of computer vision workloads, where facial analysis provides insights into emotions and expressions, supporting user experience optimization and customer behavior analytics.
- 다른 버전
- 828Microsoft.AI-900-KR.v2026-05-11.q134
- 938Microsoft.AI-900-KR.v2026-03-02.q135
- 1333Microsoft.AI-900-KR.v2026-02-07.q121
- 1281Microsoft.AI-900-KR.v2026-01-01.q158
- 최근 업로드
- 102NLN.NEX.v2026-06-04.q54
- 109Microsoft.AZ-500-KR.v2026-06-04.q213
- 111Microsoft.DP-600-KR.v2026-06-04.q98
- 113Microsoft.AZ-204-KR.v2026-06-04.q237
- 137Microsoft.PL-600-KR.v2026-06-04.q112
- 194Microsoft.SC-300-KR.v2026-06-03.q151
- 154Microsoft.DP-600-KR.v2026-06-03.q70
- 875PMI.PMP-KR.v2026-06-01.q1069
- 238Microsoft.MS-102-KR.v2026-06-01.q252
- 166Microsoft.AZ-104-KR.v2026-06-01.q197
[×]
PDF 파일 다운로드
메일 주소를 입력하시고 다운로드 하세요. Microsoft.AI-900-KR.v2026-01-05.q136 모의시험 시험자료를 다운 받으세요.
