Free Microsoft AI-901 Korean Practice Test & Real Exam Questions

  • Exam Code/Number: AI-901 Korean
  • Exam Name/Title: Microsoft Azure AI Fundamentals (AI-901 Korean Version)
  • Certification Provider: Microsoft
  • Corresponding Certification: Microsoft Certified: Azure AI Fundamentals
  • Exam Questions: 127
  • Updated On: Sep 13, 2026
다음 각 문장에 대해, 문장이 사실이면 '예'를 선택하고, 그렇지 않으면 '아니요'를 선택하십시오.
참고: 정답 하나당 1점입니다.
Correct Answer:

Explanation:

Statement 1: To process prompts that contain images, you must deploy a multimodal generative AI model. = Yes Image prompts require a vision-enabled or multimodal model. A text-only model cannot interpret image content.
Statement 2: In the Foundry playground, you can provide an image by uploading a local file or by specifying a publicly accessible URL. = Yes The Foundry playground for vision-capable models supports adding image input to a prompt, including local uploads and image URLs.
Statement 3: A multimodal model can interpret multiple images included in a single prompt. = Yes Vision-enabled multimodal models can accept image content items in a prompt, and multiple images can be included for the model to analyze together.
당신은 Foundry Tools의 Azure Content Understanding을 사용하여 송장을 분석하는 애플리케이션을 개발하고 있습니다.
애플리케이션이 처리가 완료된 후 분석 결과를 가져오도록 해야 합니다.
파이썬 코드를 어떻게 완성해야 할까요? 정답을 선택하려면 답변란에서 적절한 옵션을 고르세요.
참고: 정답 하나당 1점입니다.
Correct Answer:

Explanation:

The completed code is:
poller = client.begin_analyze(
analyzer_id= " invoice " ,
input_url=url
)
result = poller.result()
Azure Content Understanding analysis uses a long-running operation pattern. The Python SDK returns a poller from begin_analyze(), and Microsoft documentation states that the SDK poller handles polling automatically when you call .result() .
Therefore, to retrieve the analysis results after processing completes, the correct option is:
result
The other options are incorrect because status checks operation state, wait waits without returning the final analysis object, and get_results is not the method shown for retrieving the begin_analyze() result in this code pattern.
마이크로소프트의 책임 있는 AI 원칙인 투명성의 예시는 무엇인가요?
Correct Answer: A Vote an answer
Explanation: Only visible for Pass4Leader members. You can sign-up / login (it's free).
문장을 올바르게 완성하는 답을 고르시오.
Correct Answer:

Explanation:
To develop an application that analyzes text by using Azure Language in Foundry Tools, use the Azure Text Analytics client library package.
Azure Language text analysis workloads include capabilities such as sentiment analysis, key phrase extraction, named entity recognition, language detection, and other text analytics features. In application code, these text analysis capabilities are accessed by using the Azure Text Analytics client library .
The other options are incorrect:
Azure AI Projects client library is used for Foundry project and agent-related development.
Azure OpenAI client library is used to call Azure OpenAI model deployments.
Azure Speech SDK is used for speech recognition, speech synthesis, and other speech workloads.
문장을 올바르게 완성하는 답을 고르시오.
Correct Answer:

Explanation:

Counting the number of animals in an area based on a video feed is an example of computer vision .
Computer vision is the AI workload used to analyze visual content such as images and video. Counting animals in a video feed requires detecting visual objects in video frames and analyzing them, which is a computer vision task.
Forecasting predicts future values or trends from historical data.
Knowledge mining extracts insights from large document or data collections.
Therefore, the correct answer is computer vision .
당신은 Foundry Tools의 Azure Content Understanding을 사용하여 PDF에서 필드를 추출하는 애플리케이션을 개발하고 있습니다.
PDF 파일을 분석하고 추출 결과를 얻으려면 Python SDK를 사용해야 합니다.
어떻게 해야 할까요?
Correct Answer: A Vote an answer
Explanation: Only visible for Pass4Leader members. You can sign-up / login (it's free).
문장을 올바르게 완성하는 답을 고르시오.
Correct Answer:

당신은 Foundry Tools의 Azure Content Understanding을 사용하여 음성 메일 녹음을 분석하는 애플리케이션을 개발하고 있습니다.
녹음 파일에서 녹취록과 구조화된 정보를 추출해야 합니다.
어떤 유형의 분석기를 사용해야 할까요?
Correct Answer: C Vote an answer
Explanation: Only visible for Pass4Leader members. You can sign-up / login (it's free).