ExamGecko
Question list
Search
Search

List of questions

Search

Related questions











Question 109 - AI-102 discussion

Report
Export

You have the following C# method.

You need to deploy an Azure resource to the East US Azure region. The resource will be used to perform sentiment analysis.

How should you call the method?

A.
create_resource("res1", "ContentModerator", "S0", "eastus")
Answers
A.
create_resource("res1", "ContentModerator", "S0", "eastus")
B.
create_resource("res1", "TextAnalytics", "S0", "eastus")
Answers
B.
create_resource("res1", "TextAnalytics", "S0", "eastus")
C.
create_resource("res1", "ContentModerator", "Standard", "East US")
Answers
C.
create_resource("res1", "ContentModerator", "Standard", "East US")
D.
create_resource("res1", "TextAnalytics", "Standard", "East US")
Answers
D.
create_resource("res1", "TextAnalytics", "Standard", "East US")
Suggested answer: B

Explanation:

To perform sentiment analysis, we specify TextAnalytics, not ContentModerator.

Possible SKU names include: 'F0','F1','S0','S1','S2','S3','S4','S5','S6','S7','S8' Possible location names include: westus, eastus

Reference:

https://docs.microsoft.com/en-us/powershell/module/az.cognitiveservices/new-azcognitiveservicesaccount

asked 26/09/2024
DAVID ALCARAZ AZNAR
27 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first