Microsoft Designing and Implementing a Microsoft Azure AI Solution (AI-102 Korean Version) - AI-102 Korean무료 덤프문제 풀어보기
Resource1이라는 Azure Al Speech Service 리소스가 있습니다.
다음 Python 코드를 실행하여 Resource1을 호출합니다.

다음 각 문장에 대해, 문장이 사실이라면 '예'를 선택하세요. 그렇지 않으면 '아니요'를 선택하세요.
참고사항: 정답을 선택할 때마다 점수가 부여됩니다.

다음 Python 코드를 실행하여 Resource1을 호출합니다.

다음 각 문장에 대해, 문장이 사실이라면 '예'를 선택하세요. 그렇지 않으면 '아니요'를 선택하세요.
참고사항: 정답을 선택할 때마다 점수가 부여됩니다.

정답:

Explanation:

The code creates a SpeechConfig and an AudioOutputConfig with filename= " path/to/file.wav " , then constructs a SpeechSynthesizer and calls speak_text_async(input) .
Existing file behavior: AudioOutputConfig with a filename directs synthesis output to that file path; the documentation emphasizes that it specifies the output file and that the parent directory must already exist. It does not require a unique filename (i.e., it does not fail purely because a file exists). In practice, the SDK writes to the specified path. Therefore, the statement claiming failure if a file already exists is No.
Voice source: The filename in AudioOutputConfig is output, not input. To choose a voice, you set speech_config.speech_synthesis_voice_name or use SSML; the WAV file isn't "sampled" to create a voice.
Hence this statement is No. Microsoft Learn
File generation: Using AudioOutputConfig(filename=...) with SpeechSynthesizer and speak_text_async(...) writes synthesized audio to that file. Many samples show the same pattern (often with .get() to wait for completion). So the function's purpose is to generate an audio file from the input text-Yes.
Note: In production, call .get() (or await) on speak_text_async(...) so the program waits for synthesis to complete before exiting. Microsoft Learn References (Microsoft Azure AI Speech) How to synthesize speech from text (create AudioOutputConfig to write to a file; synthesize with speak_text_async ).
Python AudioConfig class (audio output can be a speaker, audio file (WAV), or stream). Microsoft Learn NET AudioConfig.FromWavFileOutput (specifies output file; parent directory must already exist).
Microsoft Learn
Azure Q & A example (Python: speak_text_async(...).get() usage). Microsoft Learn
PDF 파일로 저장된 보도자료 컬렉션이 있습니다.
파일에서 텍스트를 추출하고 감정 분석을 수행해야 합니다.
각 작업마다 어떤 서비스를 사용해야 할까요? 답변하려면 답변 영역에서 적절한 옵션을 선택하세요.
참고: 정답 하나당 1점입니다.

파일에서 텍스트를 추출하고 감정 분석을 수행해야 합니다.
각 작업마다 어떤 서비스를 사용해야 할까요? 답변하려면 답변 영역에서 적절한 옵션을 선택하세요.
참고: 정답 하나당 1점입니다.

정답:

Explanation:

You have press releases stored as PDF files. The task involves two parts:
Extract text
The correct service for OCR and text extraction from images and PDFs is Azure Computer Vision (specifically, the OCR and Read API).
While Form Recognizer can also extract text, it is primarily used for structured documents like invoices, receipts, or forms. Since the documents here are press releases (unstructured text), the best service is Computer Vision.
Perform sentiment analysis
Sentiment analysis falls under natural language processing (NLP).
The correct service is Azure AI Language (Text Analytics API).
It provides sentiment analysis, opinion mining, key phrase extraction, entity recognition, and more.
Why not other options?
Azure Cognitive Search is used for search indexing, not OCR or sentiment.
Form Recognizer specializes in structured document extraction, not sentiment analysis.
Computer Vision cannot perform sentiment analysis (only visual/text extraction).
고객이 Azure Cognitive Search를 사용하고 있습니다.
고객은 서버 측 암호화를 활성화하고 Azure에 저장된 고객 관리 키(CMK)를 사용할 계획입니다.
계획된 변경의 세 가지 의미는 무엇입니까? 각 정답은 완전한 해결책을 제시합니다.
참고: 정답 하나당 1점입니다.
고객은 서버 측 암호화를 활성화하고 Azure에 저장된 고객 관리 키(CMK)를 사용할 계획입니다.
계획된 변경의 세 가지 의미는 무엇입니까? 각 정답은 완전한 해결책을 제시합니다.
참고: 정답 하나당 1점입니다.
정답: A,C,E
설명: (Fast2test 회원만 볼 수 있음)
All이라는 이름의 Azure OpenAI 모델이 있습니다.
Azure OpenAI SDK를 사용하여 App1이라는 웹앱을 빌드하고 있습니다. App1을 구성하여 All에 연결해야 합니다. 어떤 정보를 제공해야 합니까?
Azure OpenAI SDK를 사용하여 App1이라는 웹앱을 빌드하고 있습니다. App1을 구성하여 All에 연결해야 합니다. 어떤 정보를 제공해야 합니까?
정답: B
설명: (Fast2test 회원만 볼 수 있음)
Azure Video Indexer 서비스를 사용하는 앱을 빌드하고 있습니다.
업계별 용어를 인식하도록 언어 모델을 훈련할 계획입니다.
업계별 용어가 포함된 파일을 업로드해야 합니다.
어떤 파일 형식을 사용해야 하나요?
업계별 용어를 인식하도록 언어 모델을 훈련할 계획입니다.
업계별 용어가 포함된 파일을 업로드해야 합니다.
어떤 파일 형식을 사용해야 하나요?
정답: C
설명: (Fast2test 회원만 볼 수 있음)
스마트 전자상거래 프로젝트를 개발하고 있습니다.
PDF 내용을 검색에 포함하려면 기술 세트를 설계해야 합니다.
스킬셋 설계 다이어그램을 어떻게 완성해야 할까요? 답은 해당 서비스를 적절한 단계로 끌어다 놓는 것입니다. 각 서비스는 한 번, 여러 번 또는 전혀 사용되지 않을 수 있습니다. 콘텐츠를 보려면 창 사이의 분할 막대를 끌어다 놓거나 스크롤해야 할 수도 있습니다.
참고: 정답 하나당 1점입니다.

PDF 내용을 검색에 포함하려면 기술 세트를 설계해야 합니다.
스킬셋 설계 다이어그램을 어떻게 완성해야 할까요? 답은 해당 서비스를 적절한 단계로 끌어다 놓는 것입니다. 각 서비스는 한 번, 여러 번 또는 전혀 사용되지 않을 수 있습니다. 콘텐츠를 보려면 창 사이의 분할 막대를 끌어다 놓거나 스크롤해야 할 수도 있습니다.
참고: 정답 하나당 1점입니다.

정답:

Explanation:

Box 1: Azure Blob storage
At the start of the pipeline, you have unstructured text or non-text content (such as images, scanned documents, or JPEG files). Data must exist in an Azure data storage service that can be accessed by an indexer.
Box 2: Computer Vision API
Scenario: Provide users with the ability to search insight gained from the images, manuals, and videos associated with the products.
The Computer Vision Read API is Azure ' s latest OCR technology (learn what ' s new) that extracts printed text (in several languages), handwritten text (English only), digits, and currency symbols from images and multi-page PDF documents.
Box 3: Translator API
Scenario: Product descriptions, transcripts, and all text must be available in English, Spanish, and Portuguese.
Box 4: Azure Files
Scenario: Store all raw insight data that was generated, so the data can be processed later.
Reference:
https://docs.microsoft.com/en-us/azure/search/cognitive-search-concept-intro
https://docs.microsoft.com/en-us/azure/cognitive-services/computer-vision/overview-ocr
원격 학습자를 위한 인터넷 기반 교육 솔루션을 개발하고 있습니다.
귀사에서는 교육 중에 일부 학습자가 장시간 책상을 비우거나 주의가 산만해지는 것을 확인했습니다.
각 학습자의 컴퓨터에서 비디오 및 오디오 피드를 활용하여 학습자가 수업에 참석하고 집중하고 있는지 확인해야 합니다. 솔루션은 개발 노력을 최소화하고 각 학습자를 식별할 수 있어야 합니다.
각 요구 사항에 맞는 Azure Cognitive Services 서비스는 무엇인가요? 답변하려면 답변 영역에서 적절한 옵션을 선택하세요.
참고: 정답 하나당 1점입니다.

귀사에서는 교육 중에 일부 학습자가 장시간 책상을 비우거나 주의가 산만해지는 것을 확인했습니다.
각 학습자의 컴퓨터에서 비디오 및 오디오 피드를 활용하여 학습자가 수업에 참석하고 집중하고 있는지 확인해야 합니다. 솔루션은 개발 노력을 최소화하고 각 학습자를 식별할 수 있어야 합니다.
각 요구 사항에 맞는 Azure Cognitive Services 서비스는 무엇인가요? 답변하려면 답변 영역에서 적절한 옵션을 선택하세요.
참고: 정답 하나당 1점입니다.

정답:

Explanation:

Scenario Recap
You are building a remote training monitoring solution.
Requirement: Use video and audio feeds to detect if a learner is present, paying attention, and talking.
Services available: Face, Speech, Text Analytics.
Analysis
From a learner's video feed, verify whether the learner is present.
The Face API can detect and identify faces in a video feed.
It can tell if a person is present and recognized, fulfilling the requirement.
From a learner's facial expression in the video feed, verify whether the learner is paying attention.
Again, the Face API provides facial expression and emotion recognition (happiness, anger, neutral, etc.).
This can be mapped to "paying attention vs. distracted."
From a learner's audio feed, detect whether the learner is talking.
The Speech service detects spoken input and can determine if speech is present.
Text Analytics works on text (not raw audio) and is therefore not appropriate here.
Final Answer (Answer Area Selections)
From a learner's video feed, verify whether the learner is present: Face From a learner's facial expression in the video feed, verify whether the learner is paying attention: Face From a learner's audio feed, detect whether the learner is talking: Speech Microsoft References Face API - Face detection & identification Face API - Emotion recognition Azure Speech service
로그가 발생하면서 수신되고 반구조화된 이벤트 로그 데이터를 저장해야 합니다. 무엇을 사용해야 합니까?
정답: A
설명: (Fast2test 회원만 볼 수 있음)
다음 방법을 사용하여 Azure AI 서비스 리소스를 프로비저닝할 계획입니다.




정답:

Explanation:

The code snippet shows a helper function provision_resource that provisions Azure Cognitive Services accounts by specifying:
Name (resource name)
Kind (the type of Cognitive Service, e.g., ComputerVision, FormRecognizer, etc.) Location (Azure region, such as eastus) SKU tier (pricing tier, e.g., F0 = free, S0 = standard) Step 1 - Identify the service The dropdown includes ComputerVision , CustomVision.Prediction , CustomVision.Training , and FormRecognizer .
The question context indicates a need to provision an Azure AI service resource, and the answer area highlights the FormRecognizer option. This aligns with document processing scenarios requiring Azure AI Document Intelligence (formerly Form Recognizer).
Step 2 - Select pricing tier and location
The second dropdown shows combinations of pricing and regions:
" eastus " , " S1 "
" useast " , " S1 "
" S0 " , " eastus "
" S0 " , " useast "
Azure AI Form Recognizer (Document Intelligence) supports S0 (Standard) and F0 (Free) SKUs in common regions like East US. " S0 " , " eastus " is a valid and recommended configuration.
Other options like " S1 " are not correct here, as Form Recognizer uses S0/F0, not S1.
The answer:
Service Kind: FormRecognizer
Location and SKU: " S0 " , " eastus "
Microsoft References
Azure AI Document Intelligence (Form Recognizer) documentation
Azure Cognitive Services resource creation parameters
Pricing tiers for Form Recognizer
시맨틱 커널을 사용하여 에이전트를 구축하고 있습니다. 에이전트는 사용자 지정 플러그인을 사용합니다. 에이전트가 다음 요구 사항을 충족하는지 확인해야 합니다.
* 에이전트는 함수 호출을 사용해야 합니다.
* 지침과 일치하는 모든 기능이 작동되어야 합니다.
* 사용자가 함수에 필요한 모든 매개변수를 제공하지 못하면 에이전트가 해당 매개변수를 모두 요청해야 합니다.
코드를 어떻게 완성해야 할까요? 답하려면 다음 중 적절한 답을 선택하세요. 참고: 정답은 1점입니다.

* 에이전트는 함수 호출을 사용해야 합니다.
* 지침과 일치하는 모든 기능이 작동되어야 합니다.
* 사용자가 함수에 필요한 모든 매개변수를 제공하지 못하면 에이전트가 해당 매개변수를 모두 요청해야 합니다.
코드를 어떻게 완성해야 할까요? 답하려면 다음 중 적절한 답을 선택하세요. 참고: 정답은 1점입니다.

정답:

Explanation:

You are adding a custom plugin to a Semantic Kernel-based agent and you want function calling to be enforced and self-completing:
To register a plugin that exposes one or more callable functions to the agent, use CreatePluginFromFunctions . This builds a plugin from Kernel functions (prompt- or code-based) and makes them available for tool/function calling by the model.
To ensure the model must call functions (and request any required parameters it doesn't have), set the prompt execution settings to FunctionChoiceBehaviour.Required . In Semantic Kernel, this corresponds to the OpenAI tool/function-calling control that forces the assistant to invoke appropriate functions. When required parameters are marked in the function's schema, the assistant will ask follow-up questions to collect them before (or while) invoking the function.
References (Microsoft Azure AI Solution)
Semantic Kernel: Plugins and Functions, ChatCompletionAgent, OpenAIPromptExecutionSettings, and FunctionChoiceBehavior for enforced tool/function calling.
참고: 이 문제는 동일한 시나리오를 제시하는 일련의 문제 중 하나입니다. 각 문제는 명시된 목표를 충족할 수 있는 고유한 답안을 포함하고 있습니다. 일부 문제 세트에는 정답이 두 개 이상 있을 수 있고, 다른 문제 세트에는 정답이 없을 수 있습니다.
이 섹션의 질문에 답변한 후에는 해당 질문으로 돌아갈 수 없습니다. 따라서 해당 질문은 복습 화면에 표시되지 않습니다.
Azure Cognitive Search 서비스가 있습니다.
지난 12개월 동안 쿼리 볼륨이 꾸준히 증가했습니다.
Cognitive Search 서비스에 대한 일부 검색 쿼리 요청이 제한되고 있음을 발견했습니다.
검색어 요청이 제한될 가능성을 줄여야 합니다.
해결 방법: 고객 관리 키(CMK) 암호화를 활성화합니다.
이것이 목표를 달성하는가?
이 섹션의 질문에 답변한 후에는 해당 질문으로 돌아갈 수 없습니다. 따라서 해당 질문은 복습 화면에 표시되지 않습니다.
Azure Cognitive Search 서비스가 있습니다.
지난 12개월 동안 쿼리 볼륨이 꾸준히 증가했습니다.
Cognitive Search 서비스에 대한 일부 검색 쿼리 요청이 제한되고 있음을 발견했습니다.
검색어 요청이 제한될 가능성을 줄여야 합니다.
해결 방법: 고객 관리 키(CMK) 암호화를 활성화합니다.
이것이 목표를 달성하는가?
정답: A
설명: (Fast2test 회원만 볼 수 있음)
공장 생산 라인에서 생산되는 부품의 결함을 인식하는 애플리케이션을 개발하고 있습니다. 해당 부품은 귀사의 사업에 특화되어 있습니다.
일반적인 오류를 감지하려면 Custom Vision API를 사용해야 합니다.
어떤 세 가지 동작을 순서대로 수행해야 할까요? 답하려면 동작 목록에서 해당 동작을 정답 영역으로 옮겨 올바른 순서대로 정리하세요.

일반적인 오류를 감지하려면 Custom Vision API를 사용해야 합니다.
어떤 세 가지 동작을 순서대로 수행해야 할까요? 답하려면 동작 목록에서 해당 동작을 정답 영역으로 옮겨 올바른 순서대로 정리하세요.

정답:

Explanation:

Comprehensive Detailed Explanation
You are tasked with building a solution using Custom Vision to detect faults in factory components. Custom Vision follows a defined workflow:
Create a project
Before anything else, you must create a Custom Vision project in the Azure AI portal.
This project specifies the type of model you are building: classification (classifying entire images) or object detection (locating items within images).
Since the question is about detecting faults in specific components (a business-specific scenario), it aligns with classification unless explicitly stated otherwise.
Upload and tag images
You must provide training data.
Upload a set of images showing both faulty and non-faulty components.
Tag each image correctly so that the model can learn from labeled examples.
Train the classifier model
Once images are tagged, you run training on the dataset to generate the classifier model.
The model can then be published and used for inference via API calls.
Why not the other options?
Initialize the training dataset: This is not a direct step in Custom Vision; instead, uploading and tagging images inherently prepares the training dataset.
Train the object detection model: Object detection is used if you need bounding boxes around items within an image. Since the question is about recognizing faults in a component (faulty vs non-faulty), a classifier model is appropriate.
Correct Sequence:
Create a project
Upload and tag images
Train the classifier model
Microsoft References
Quickstart: Build an image classification project with the Custom Vision portal Custom Vision overview Train and test a Custom Vision model
Azure AI Foundry Content Safety 차단 목록을 사용하는 앱이 있습니다.
차단 목록에서 항목을 삭제해야 합니다. 이 방법은 기존 차단 목록에 있는 항목에 미치는 영향을 최소화해야 합니다.
코드를 어떻게 완성해야 할까요? 정답을 선택하려면 답변란에서 적절한 옵션을 고르세요.
참고: 정답 하나당 1점입니다.

차단 목록에서 항목을 삭제해야 합니다. 이 방법은 기존 차단 목록에 있는 항목에 미치는 영향을 최소화해야 합니다.
코드를 어떻게 완성해야 할까요? 정답을 선택하려면 답변란에서 적절한 옵션을 고르세요.
참고: 정답 하나당 1점입니다.

정답:

Explanation:

사용자 정의 API를 사용하여 지정된 위치의 현재 시간을 검색하는 에이전트를 구축하고 있습니다.
사용자 정의 API의 기능을 테스트해야 합니다.
명령을 어떻게 완료해야 하나요? 답변하려면 답변 영역에서 적절한 옵션을 선택하세요.
참고: 정답 하나당 1점입니다.

사용자 정의 API의 기능을 테스트해야 합니다.
명령을 어떻게 완료해야 하나요? 답변하려면 답변 영역에서 적절한 옵션을 선택하세요.
참고: 정답 하나당 1점입니다.

정답:

Explanation:
