Microsoft Azure AI Fundamentals (AI-900 Korean Version) (AI-900 Korean) Free Practice Test
Question 1
머신 러닝의 발전을 위해, 훈련과 평가를 위해 데이터를 어떻게 분할해야 할까요?
Correct Answer: C
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 2
.을 선택하세요.


Correct Answer:

Explanation:

The correct completion of the sentence is:
"You can use the Custom Vision service to train an object detection model by using your own images." According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and Microsoft Learn module "Identify features of computer vision workloads," the Azure Custom Vision service is a specialized component of Azure Cognitive Services for Vision that enables developers to train custom image classification or object detection models using their own labeled image datasets.
The Custom Vision service differs from the Computer Vision service in that it allows full customization - meaning you can upload your own images, tag them manually, and train the model to recognize objects specific to your use case (for example, detecting your company's products, tools, or vehicles). Once trained, the model can identify and localize these objects in new images by returning bounding boxes and confidence scores, which is precisely what defines an object detection workload.
Microsoft's AI-900 materials describe object detection as the process of identifying objects in an image and determining their position, typically represented by bounding boxes. Custom Vision supports two main project types:
* Image Classification: Determines what is present in the image (e.g., "dog," "cat," "car").
* Object Detection: Identifies what is present and where it is located in the image.
In contrast:
* Computer Vision provides prebuilt models for general image analysis but doesn't allow custom model training.
* Form Recognizer is used for extracting text and data from structured or semi-structured documents.
* Azure Video Analyzer for Media focuses on video content analysis, not custom object detection.
Therefore, based on the official Microsoft AI-900 study guide and Microsoft Learn content, the verified and correct answer is Custom Vision, as it specifically allows training of a custom object detection model using your own images.
Question 3
Azure Machine Learning Designer용 사용자 지정 코드를 작성하는 데 사용할 수 있는 두 가지 언어는 무엇인가요? 각 정답은 완전한 해결책을 제시합니다.
참고사항: 정답 하나당 1점입니다.
참고사항: 정답 하나당 1점입니다.
Correct Answer: B,D
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 4
다음 각 문장에 대해, 문장이 사실이라면 '예'를 선택하세요. 그렇지 않으면 '아니요'를 선택하세요.
참고: 정답 하나당 1점입니다.

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

Correct Answer:

Explanation:
Yes, No, Yes.
According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and the Microsoft Learn module "Identify capabilities of Azure Cognitive Services for Language", the Azure Translator service is a cloud-based machine translation service used to translate text or entire documents between languages in real time. It uses REST APIs or client libraries to translate text input, detect languages, and support multiple target languages in a single request.
* "The following service call will accept English text as an input and output Italian and French text:
/translate?from=en & to=it,fr - Yes.This URL format is correct because the Translator service API allows multiple target languages to be specified in a single to parameter separated by commas. In this case, from=en defines the source language (English), and to=it,fr requests translations into Italian (it) and French (fr). The API would return results in both target languages simultaneously. This syntax is officially documented in Microsoft Learn as the valid format for multi-language translation.
* "The following service call will accept English text as an input and output Italian and French text:
/translate?from=en & to=fr & to=it - No.This format is incorrect, as the Translator API does not support repeating the to parameter multiple times. Only one to parameter is valid, and multiple target languages must be provided as a comma-separated list within the same to parameter.
* "The Translator service can be used to translate documents from English to French." - Yes.This statement is true. The Translator service supports both text translation and document translation. The document translation capability allows the translation of whole files such as Word, PowerPoint, or PDF documents while preserving formatting and structure. This feature is included in the official Translator API under "Document Translation." In summary, the AI-900 study content clarifies that:
# /translate?from=en & to=it,fr # Valid syntax
# /translate?from=en & to=fr & to=it # Invalid syntax
# Translator can translate full documents between languages
Question 5
다음 데이터 세트를 사용하여 주어진 고객의 소득 범위를 예측해야 합니다.

어떤 두 필드를 특성으로 사용해야 할까요? 각 정답은 완전한 해결책을 제시합니다.
참고: 정답 하나당 1점입니다.

어떤 두 필드를 특성으로 사용해야 할까요? 각 정답은 완전한 해결책을 제시합니다.
참고: 정답 하나당 1점입니다.
Correct Answer: B,D
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 6
웹사이트용 챗봇을 개발해야 합니다. 챗봇은 다음 문서의 정보를 기반으로 사용자의 질문에 답변해야 합니다.
Microsoft Word 문서의 제품 문제 해결 가이드
웹페이지의 자주 묻는 질문(FAQ) 목록
어떤 서비스를 이용해 문서를 처리해야 할까요?
Microsoft Word 문서의 제품 문제 해결 가이드
웹페이지의 자주 묻는 질문(FAQ) 목록
어떤 서비스를 이용해 문서를 처리해야 할까요?
Correct Answer: A
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 7
이상 감지에 사용할 수 있는 머신 러닝 기술은 무엇입니까?
Correct Answer: B
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 8
Azure OpenAI를 사용하는 Azure 구독이 있습니다.
웹사이트에 사용할 시골 풍경의 원본 이미지를 만들어야 합니다.
어떻게 해야 하나요?
웹사이트에 사용할 시골 풍경의 원본 이미지를 만들어야 합니다.
어떻게 해야 하나요?
Correct Answer: A
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 9
다음 각 문장에 대해, 문장이 사실이라면 '예'를 선택하세요. 그렇지 않으면 '아니요'를 선택하세요.
참고: 정답 하나당 1점입니다.

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

Correct Answer:

Explanation:

The Azure Text Analytics service, a component of Azure Cognitive Services, provides natural language processing (NLP) capabilities to analyze and understand text-based data. According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and Microsoft Learn module "Identify features and uses for Natural Language Processing (NLP)", the Text Analytics service supports multiple text understanding tasks, such as language detection, key phrase extraction, sentiment analysis, and entity recognition.
* Language Identification - Yes:Text Analytics can automatically detect the language in which text is written. This feature analyzes linguistic patterns and assigns a language code (for example, "en" for English, "es" for Spanish). It is one of the primary features described in Microsoft Learn as part of the service's Language Detection API.
* Detect Handwritten Signatures - No:Detecting handwritten signatures is not a text-based NLP task.
Instead, it belongs to the computer vision domain, specifically Optical Character Recognition (OCR).
The Text Analytics service only processes digital text, not handwritten or image-based data. To detect handwriting or signatures, you would use the Computer Vision OCR API, not Text Analytics.
* Entity Recognition - Yes:The Text Analytics service can identify named entities-such as people, locations, organizations, dates, and quantities-within documents. This is known as Named Entity Recognition (NER), which helps extract structured information from unstructured text.
Question 10
다음 각 문장에 대해, 문장이 사실이라면 '예'를 선택하세요. 그렇지 않으면 '아니요'를 선택하세요.
참고: 정답 하나당 1점입니다.

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

Correct Answer:

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.
Question 11
구조화되지 않은 대량의 데이터에서 데이터 간의 관계를 추출하는 것은 어떤 유형의 AI 워크로드의 예입니까?
Correct Answer: B
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 12
다음 각 문장에 대해, 문장이 사실이라면 '예'를 선택하세요. 그렇지 않으면 '아니요'를 선택하세요.
참고: 정답 하나당 1점입니다.

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

Correct Answer:

Explanation:

The correct answers are Yes, Yes, and Yes.
According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and Microsoft Learn content in the section "Describe features of conversational AI workloads on Azure", bots created using Azure Bot Service can interact with users across multiple channels. The AI-900 syllabus explains that Azure Bot Service integrates with various communication platforms, allowing developers to build a single bot that can be deployed in many contexts without rewriting the logic.
* "You can communicate with a bot by using Cortana." - Yes.The AI-900 learning materials explain that Cortana, Microsoft's intelligent personal assistant, can serve as a channel for bots built with the Azure Bot Service. Through the Bot Framework, bots can be connected to Cortana to allow users to interact via voice or text. Although Cortana is less prominent now, it remains conceptually included in the AI-
900 coverage as an example of a voice-based conversational AI channel.
* "You can communicate with a bot by using Microsoft Teams." - Yes.This statement is true and directly referenced in the AI-900 syllabus. Microsoft Teams is a fully supported communication channel for Azure Bot Service. Bots in Teams can handle chat messages, commands, and interactions in team or personal contexts. The Microsoft Learn materials specify Teams as one of the native connectors where enterprise users can interact with organizational bots.
* "You can communicate with a bot by using a webchat interface." - Yes.This is also true. The Web Chat channel is one of the most common ways to deploy bots publicly. Azure Bot Service provides a Web Chat control that can be embedded directly into a webpage or web application. This allows users to interact with the bot using a chat window, just like on customer service websites.
Therefore, all three interfaces-Cortana (voice-based), Microsoft Teams (enterprise chat), and Web Chat (browser-based)-are valid and officially supported communication channels for Azure bots.
Question 13
자연어 처리를 사용하여 Microsoft 뉴스 기사의 텍스트를 처리합니다.
다음 그림에 표시된 출력을 받게 됩니다.

어떤 유형의 자연어 처리가 수행되었습니까?
다음 그림에 표시된 출력을 받게 됩니다.

어떤 유형의 자연어 처리가 수행되었습니까?
Correct Answer: A
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 14
문장을 올바르게 완성하는 답을 선택하세요.


Correct Answer:

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.