Microsoft Azure AI Fundamentals (AI-900 Korean Version) - AI-900 Korean무료 덤프문제 풀어보기

문장을 완성하려면 답변란에서 적절한 옵션을 선택하세요.
정답:

Explanation:
Classification
According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and the Microsoft Learn module "Describe features of common AI workloads", classification is a supervised machine learning technique used when the goal is to predict which category or class an item belongs to. In supervised learning, the model is trained with labeled data-data that already contains known outcomes. The system learns patterns and relationships between input features and their corresponding labels so it can predict future classifications accurately.
In the scenario provided - "A banking system that predicts whether a loan will be repaid" - the model's output is a binary decision, meaning there are two possible outcomes:
* The loan will be repaid (positive class)
* The loan will not be repaid (negative class)
This kind of problem involves predicting a discrete value (a label or category), not a continuous numeric output. Therefore, it perfectly fits the classification type of machine learning.
The AI-900 learning materials describe classification as being used in many real-world examples, including:
* Determining whether an email is spam or not spam.
* Predicting whether a customer will churn (leave) or stay.
* Detecting fraudulent transactions.
* Assessing medical test results as positive or negative.
By contrast:
* Regression predicts continuous numeric values, such as predicting house prices, temperatures, or sales revenue. It would not apply here because repayment prediction is not a numeric value but a categorical decision.
* Clustering is an unsupervised learning method that groups similar data points without predefined categories, such as segmenting customers by purchasing behavior.
Thus, based on Microsoft's Responsible AI and AI-900 study guide concepts, a banking system that predicts whether a loan will be repaid uses the Classification type of machine learning.
자주 묻는 질문(FAQ) 페이지를 사용하여 QnA Maker 봇을 빌드합니다.
봇을 더욱 사용자 친화적으로 만들려면 전문적인 인사말과 기타 응답을 추가해야 합니다.
어떻게 해야 하나요?

정답: C
설명: (Fast2test 회원만 볼 수 있음)
이메일, Microsoft Teams, 웹 채팅 등 다양한 채널을 통해 사용자와 소통하는 대화형 AI 솔루션을 개발하고 있습니다.
어떤 서비스를 사용해야 하나요?

정답: B
설명: (Fast2test 회원만 볼 수 있음)
컴퓨터 비전 서비스를 적절한 AI 워크로드에 맞춰 조정합니다.
답변하려면 왼쪽 열에서 해당 서비스를 오른쪽 작업 부하로 끌어다 놓으세요. 각 서비스는 한 번, 여러 번 또는 전혀 사용되지 않을 수 있습니다.
참고: 정답을 맞힐 때마다 1점이 주어집니다.
정답:

Explanation:

This question evaluates understanding of the different Azure AI Computer Vision services and their distinct functionalities, as covered in the Microsoft AI-900 study guide and Microsoft Learn modules under "Describe features of common AI workloads" and "Identify Azure services for computer vision."
* Azure AI Document Intelligence (formerly known as Form Recognizer):This service is designed to extract structured information from documents, such as forms, receipts, and invoices. It uses optical character recognition (OCR) combined with AI models to detect key-value pairs, tables, and handwritten text. This makes it ideal for automating data entry and digitizing scanned documents.
Hence, it matches "Extract information from scanned forms and invoices."
* Azure AI Vision (formerly Computer Vision):This service provides image and video analysis capabilities. It can detect objects, people, text, and scenes; generate image captions; and extract descriptive tags. It also supports OCR for printed and handwritten text within images. Therefore, it matches "Analyze images and video, and extract descriptions, tags, objects, and text."
* Azure AI Custom Vision:Custom Vision allows you to train your own image classification and object detection models using your own labeled images. Unlike the general Vision service, Custom Vision lets you build domain-specific models-for example, detecting your company's products or identifying manufacturing defects. Hence, it matches "Train custom image classification and object detection models by using your own images." These three services complement each other within Azure's computer vision ecosystem, collectively supporting both general-purpose and specialized AI solutions for visual data analysis.
친구의 이미지에 자동으로 태그를 지정하는 소셜 미디어용 이미지 태그 지정 솔루션을 구축해야 합니다. 어떤 Azure Cognitive Services 서비스를 사용해야 할까요?

정답: B
설명: (Fast2test 회원만 볼 수 있음)
문장을 올바르게 완성하는 답을 선택하세요.
정답:

Explanation:

According to the Microsoft Azure AI Fundamentals (AI-900) Official Study Guide and the Microsoft Learn module "Identify guiding principles for responsible AI," Fairness is one of Microsoft's six core principles of Responsible AI. The principle of fairness ensures that AI systems treat all individuals and groups equitably, and that the models do not produce biased or discriminatory outcomes.
Bias in AI systems can occur when training data reflects existing prejudices, inequalities, or imbalances. For example, if a dataset used for a hiring model underrepresents a certain demographic group, the AI system might produce unfair recommendations. Microsoft emphasizes that AI should not reflect or reinforce bias and that developers must actively design, test, and monitor models to mitigate unfairness.
Microsoft's Six Responsible AI Principles:
* Fairness - AI systems should treat everyone equally and avoid bias.
* Reliability and safety - AI systems must operate as intended even under unexpected conditions.
* Privacy and security - AI must protect personal and business data.
* Inclusiveness - AI should empower all people and be accessible to diverse users.
* Transparency - AI systems should be understandable and their decisions explainable.
* Accountability - Humans should be accountable for AI system outcomes.
The other options do not fit this context:
* Accountability ensures human responsibility for AI decisions.
* Inclusiveness focuses on accessibility and empowering all users.
* Transparency relates to making AI systems understandable.
Therefore, the correct answer is fairness, as it directly addresses the principle that AI systems should NOT reflect biases from the datasets used to train them.
귀사는 위젯을 제조합니다.
위젯의 디지털 사진이 1,000장 있습니다.
사진 내에서 위젯의 위치를 ​​파악해야 합니다.
무엇을 사용해야 하나요?

정답: D
설명: (Fast2test 회원만 볼 수 있음)
문장을 완성하려면 답변란에서 적절한 옵션을 선택하세요.
정답:

Explanation:

According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and the Microsoft Learn module "Explore fundamental principles of machine learning", feature engineering is the process used to generate additional features or transform existing data into forms that improve model performance. Features are individual measurable properties or characteristics used as input for machine learning algorithms. The goal of feature engineering is to create new informative variables that better represent the underlying patterns in the data.
Feature engineering may include tasks such as:
* Combining or transforming raw data columns (e.g., creating a "total purchase amount" from price × quantity).
* Extracting time-based components (e.g., year, month, day, hour) from datetime values.
* Encoding categorical variables (e.g., one-hot encoding or label encoding).
* Scaling or normalizing numerical features.
* Creating polynomial or interaction terms to capture complex relationships.
Microsoft's AI-900 learning material emphasizes that the process of preparing data for machine learning involves data cleaning, feature engineering, and feature selection. While feature selection is about choosing the most relevant features from the existing dataset, feature engineering focuses on creating or generating new features to enhance model accuracy and generalization.
The other options do not fit this definition:
* Feature selection is about removing redundant or irrelevant features, not generating new ones.
* Model evaluation involves assessing the model's performance using metrics like accuracy or F1 score.
* Model training is the phase where the algorithm learns patterns from the data, not when features are created.
Therefore, based on the AI-900 official concepts and Microsoft's documentation, the correct answer is Feature engineering, as it is the process specifically used to generate additional features that improve machine learning model performance and predictive capability.
대화형 AI 워크로드의 두 가지 예는 무엇인가요? 각 정답은 완전한 해결책을 제시합니다.
참고: 정답 하나당 1점입니다.

정답: A,D
설명: (Fast2test 회원만 볼 수 있음)
자동차 가격을 예측하는 모델을 구축하려면 Azure Machine Learning Designer를 사용해야 합니다.
모델을 완성하려면 어떤 유형의 모듈을 사용해야 할까요? 정답은 해당 모듈을 올바른 위치로 드래그하여 찾는 것입니다. 각 모듈은 한 번, 여러 번 또는 전혀 사용하지 않을 수 있습니다. 콘텐츠를 보려면 창 사이의 분할 막대를 드래그하거나 스크롤해야 할 수도 있습니다.
참고: 정답 하나당 1점입니다.
정답:

Explanation:

Box 1: Select Columns in Dataset
For Columns to be cleaned, choose the columns that contain the missing values you want to change. You can choose multiple columns, but you must use the same replacement method in all selected columns.
Example:

The task is to build a machine learning model in Azure Machine Learning designer to predict automobile prices, which is a regression problem since the output (price) is a continuous numeric value. The pipeline must follow the logical data preparation, training, and evaluation flow as outlined in the Microsoft Azure AI Fundamentals (AI-900) study guide and Microsoft Learn module "Create a machine learning model with Azure Machine Learning designer." Here's the correct sequence and reasoning:
* Select Columns in Dataset:The first step after loading the raw automobile dataset is to choose the relevant columns that will be used as features (inputs) and the label (output). This module ensures that only necessary fields (for example, horsepower, engine size, mileage, etc.) are used to train the model while excluding irrelevant columns like vehicle ID or serial number.
* Split Data:Next, the cleaned and filtered dataset must be split into two subsets: training data and testing data (often 70/30 or 80/20). This allows the model to be trained on one portion and evaluated on the other to measure predictive accuracy.
* Linear Regression:Since automobile price prediction is a numeric prediction task, the appropriate learning algorithm is Linear Regression. This supervised algorithm learns relationships between numeric features and the target (price).
Finally, the workflow connects the training data and Linear Regression module to the Train Model module, which outputs a trained regression model. The trained model is then linked to the Score Model module to compare predicted vs. actual prices.
This pipeline fully aligns with Microsoft's recommended process for regression in Azure ML Designer.
Azure Cognitive Services 서비스를 적절한 작업에 맞춰 연결하세요.
답변하려면 왼쪽 열에서 해당 서비스를 오른쪽의 해당 작업으로 끌어다 놓으세요. 각 서비스는 한 번, 여러 번 또는 전혀 사용하지 않을 수 있습니다.
참고: 정답을 맞힐 때마다 1점이 주어집니다.
정답:

Explanation:

These matches are based on the Microsoft Azure AI Fundamentals (AI-900) Official Study Guide and the Microsoft Learn module "Explore Azure Cognitive Services." Microsoft Azure provides Cognitive Services that enable developers to integrate artificial intelligence capabilities-such as vision, speech, language understanding, and decision-making-into applications without requiring in-depth AI expertise.
* Convert a user's speech to text # Speech ServiceThe Azure Speech Service supports speech-to-text (STT) conversion, which transcribes spoken language into written text. This feature is commonly used in voice assistants, transcription systems, and voice-enabled apps. The service uses advanced speech recognition models to handle different accents, languages, and background noises.
* Identify a user's intent # Language ServiceThe Azure AI Language Service (which includes capabilities from LUIS - Language Understanding) is used to interpret what a user means or wants to achieve based on their words. It identifies intents (the goal or action behind the input) and entities (key pieces of information) from natural language text. This is a key component in conversational AI applications, allowing chatbots and virtual assistants to respond intelligently.
* Provide a spoken response to the user # Speech ServiceThe Speech Service also supports text-to-speech (TTS) functionality, which converts textual responses into natural-sounding speech. This enables applications to communicate audibly with users, completing the conversational loop.
Translator Text is not used here because it's primarily designed for language translation between different languages, not for speech recognition or intent understanding.
대화형 AI 워크로드의 두 가지 예는 무엇인가요? 각 정답은 완전한 해결책을 제시합니다.
참고: 정답 하나당 1점입니다.

정답: A,C
설명: (Fast2test 회원만 볼 수 있음)
Azure OpenAI GPT-3.5 대규모 언어 모델(LLM)을 사용하여 기술적인 질문에 답변하는 챗봇이 있습니다. 챗봇을 정확하게 설명하는 두 가지 설명은 무엇입니까? 각 정답은 완전한 해결책을 제시합니다.
참고: 정답은 1점입니다.

정답: C,D
설명: (Fast2test 회원만 볼 수 있음)
사용자의 텍스트 입력을 기반으로 다음과 같은 작업을 수행하기 위해 자연어 처리(NLP)를 사용하는 챗봇을 만들고 있습니다.
* 고객 주문을 접수합니다.
* 지원 문서를 검색합니다.
* 주문 상태 업데이트를 검색합니다.
어떤 유형의 NLP를 사용해야 합니까?

정답: A
설명: (Fast2test 회원만 볼 수 있음)

우리와 연락하기

문의할 점이 있으시면 메일을 보내오세요. 12시간이내에 답장드리도록 하고 있습니다.

근무시간: ( UTC+9 ) 9:00-24:00
월요일~토요일

서포트: 바로 연락하기 

English Deutsch 繁体中文 日本語