텍스트 처리 솔루션을 개발하고 있습니다.
아래와 같은 함수가 있습니다.


Explanation:
The output will include the following words: our and included. # No
The output will include the following words: Paris, Eiffel, and Tower. # Yes The function will output all the key phrases from the input string to the console. # No Comprehensive Detailed Explanation Let's examine the function:
static void GetKeyWords ( TextAnalyticsClient textAnalyticsClient, string text)
{
var response = textAnalyticsClient.RecognizeEntities(text);
Console.WriteLine( " Key words: " );
foreach (CategorizedEntity entity in response.Value)
{
Console.WriteLine( $ " {entity.Text} " );
}
}
The function uses RecognizeEntities from the Azure Text Analytics SDK.
RecognizeEntities detects and categorizes named entities in text (such as locations, people, organizations, dates, etc.).
It does not extract all words or key phrases.
For extracting key phrases, you would use ExtractKeyPhrases , not RecognizeEntities .
Evaluating the statements:
" The output will include the following words: our and included. "
These are common words, not entities. They will not appear.
The answer: No
" The output will include the following words: Paris, Eiffel, and Tower. " These are named entities (location, landmark). They will be recognized and returned.
The answer: Yes
" The function will output all the key phrases from the input string to the console. " No. The function extracts entities, not key phrases. Key phrases would require ExtractKeyPhrases .
The answer: No
CS1이라는 이름의 Azure Al Content Safety 리소스가 포함된 Azure 구독이 있습니다.
원이 포함된 테스트 이미지를 만듭니다.
curl 명령과 다음 명령줄 매개변수를 사용하여 테스트 이미지를 CS1에 제출합니다.

어떤 결과를 기대해야 하나요?
스캔한 경비 청구서를 처리하고 다음 데이터를 추출 및 분류하는 앱을 개발하고 있습니다.
* 판매자 정보
* 거래 시간
* 거래일자
* 납부된 세금
* 총비용
앱에 적합한 Azure AI 문서 인텔리전스 모델을 추천해 주셔야 합니다. 솔루션은 개발 노력을 최소화해야 합니다.
무엇을 사용해야 할까요?
당신은 챗봇을 만들고 있습니다.
공격적이고 성적으로 노골적인 언어를 식별하려면 Content Moderator API를 사용해야 합니다.
어떤 세 가지 설정을 구성해야 할까요? 답변하려면 답변 영역에서 적절한 설정을 선택하세요.
참고: 정답 하나당 1점입니다.


Explanation:

To detect aggressive language (e.g., profanity/abuse) and sexually explicit content in text using the Content Moderator Text - Screen API:
classify = true
Enables machine-assisted text classification that returns category scores (e.g., sexually explicit/suggestive categories). This is required to identify sexual content.
language = < code > (for example, eng )
Specifies the language so profanity/abusive terms are detected correctly. The profanity detection in Text- Screen is language dependent.
autocorrect = true
Helps normalize intentionally misspelled or obfuscated words so that profanity or aggressive terms are still detected (e.g., "f@#$" # "fuck").
Other parameters in the blade are not necessary for this goal:
PII targets personal data extraction, not aggression/sexuality.
listId is for matching against custom blocklists.
Headers like Ocp-Apim-Subscription-Key and Content-Type are required to call the API, but they are not the content-analysis settings that control detection behavior asked for in this question.
Microsoft Azure AI References
Azure AI Content Moderator - Screen text API parameters (autocorrect, language, classify) and category outputs.
Azure AI Content Moderator - Text moderation concepts: profanity detection and classification categories.
비디오 교육 솔루션을 위한 콘텐츠를 구축하고 있습니다.
비디오 콘텐츠에 맞춰 내레이션을 제작해야 합니다. 솔루션은 사용자 지정 신경망 음성을 사용해야 합니다.
맞춤형 뉴럴 음성을 만들려면 무엇을 사용해야 하며, 내레이션을 생성하려면 어떤 서비스를 사용해야 할까요? 답변하려면 답변 영역에서 적절한 옵션을 선택하세요.
참고: 정답은 1점입니다.


Explanation:

To build narration for video training content using Custom Neural Voice, we must know where each step is done:
Creating a Custom Neural Voice
A Custom Neural Voice is a text-to-speech (TTS) feature within Azure AI Speech.
It allows you to create a unique, natural-sounding synthetic voice.
The correct tool to build and configure a custom voice is the Speech Studio portal.
Not the Language Understanding portal (LUIS), Azure portal directly, or Bot Framework Composer.
Generating narration
Narration requires converting written text into speech.
This is done via the Text-to-Speech service in Azure AI Speech.
Other options:
Language Understanding # For intent/utterance processing, not narration.
Speaker Recognition # For identifying/authenticating speakers, not narration.
Speech-to-text # Converts spoken words to text (the opposite direction).
Thus:
Custom Neural Voice # Speech Studio portal
Narration # Text-to-speech
Correct Answers:
Custom neural voice: The Speech Studio portal
Narration: Text-to-speech
Microsoft References
Custom Neural Voice in Speech Studio
Text-to-Speech overview
A1 GPT 3.5 모델의 세 가지 배포를 호스팅하는 AH라는 Azure OpenA1 리소스가 있습니다. 각 배포는 고유한 워크로드에 맞게 최적화되어 있습니다.
세 개의 앱을 배포할 계획입니다. 각 앱은 REST API를 사용하여 AM에 액세스하고, 앱의 의도된 워크로드에 맞게 최적화된 배포를 사용합니다.
각 앱에 AH 액세스 권한과 적절한 배포를 제공해야 합니다. 솔루션은 해당 앱만 AM에 액세스할 수 있도록 해야 합니다.
AM에 대한 액세스를 제공하려면 무엇을 사용해야 할까요? 그리고 각 앱은 적절한 배포에 연결하기 위해 무엇을 사용해야 할까요? 답변하려면 답변 영역에서 적절한 옵션을 선택하세요.
참고: 정답 하나당 1점입니다.


Explanation:

소셜 미디어 메시징 앱을 만들고 있습니다.
실시간으로 메시지에 사용된 언어를 식별해야 합니다.
어떤 서비스를 사용해야 하나요?
사용자가 업로드한 여러 파일을 결합하고 처리하는 에이전트를 구축할 계획입니다.
Azure Al Agent Service를 사용하여 에이전트를 개발할지 여부를 평가하고 있습니다.
서비스에 업로드할 수 있는 모든 파일의 최대 크기는 얼마입니까?
고객 지원 챗봇을 만들고 있습니다.
다음 사항을 식별하도록 봇을 구성해야 합니다.
* 내부 제품 개발을 위한 코드명
* 신용카드 번호가 포함된 메시지
솔루션은 개발 노력을 최소화해야 합니다.
각 요구 사항에 맞게 어떤 Azure Cognitive Service for Language 기능을 사용해야 할까요? 답하려면 해당 기능을 올바른 요구 사항에 끌어다 놓으세요. 각 기능은 한 번, 여러 번 또는 전혀 사용되지 않을 수 있습니다. 콘텐츠를 보려면 창 사이의 분할 막대를 끌어다 놓거나 스크롤해야 할 수도 있습니다. 참고: 올바른 선택은 1점입니다.


Explanation:

The chatbot needs to recognize two different kinds of information:
Code names for internal product development
These are not standard entities like " locations " or " organizations " that prebuilt NER can detect.
You need to train a custom model to recognize internal terms or codenames (for example, " Project Falcon " ).
The correct Azure Cognitive Service for Language feature is Custom Named Entity Recognition (Custom NER), which allows defining and training entity categories specific to your business.
Messages that include credit card numbers
Credit card numbers are sensitive data falling under Personally Identifiable Information (PII).
Azure Cognitive Service for Language provides a PII detection feature that automatically identifies and masks sensitive information such as credit card numbers, SSNs, and phone numbers.
This minimizes development effort since it is prebuilt and ready to use.
Correct Answer Mapping:
Identify code names for internal product development # Custom named entity recognition (NER) Identify messages that include credit card numbers # Personally Identifiable Information (PII) detection Microsoft References Custom Named Entity Recognition in Azure AI Language PII detection in Azure AI Language