ExamGecko
Question list
Search
Search

List of questions

Search

Related questions











Question 66 - AI-102 discussion

Report
Export

You have the following C# method for creating Azure Cognitive Services resources programmatically.

You need to call the method to create a free Azure resource in the West US Azure region. The resource will be used to generate captions of images automatically.

Which code should you use?

A.
create_resource(client, "res1", "ComputerVision", "F0", "westus")
Answers
A.
create_resource(client, "res1", "ComputerVision", "F0", "westus")
B.
create_resource(client, "res1", "CustomVision.Prediction", "F0", "westus")
Answers
B.
create_resource(client, "res1", "CustomVision.Prediction", "F0", "westus")
C.
create_resource(client, "res1", "ComputerVision", "S0", "westus")
Answers
C.
create_resource(client, "res1", "ComputerVision", "S0", "westus")
D.
create_resource(client, "res1", "CustomVision.Prediction", "S0", "westus")
Answers
D.
create_resource(client, "res1", "CustomVision.Prediction", "S0", "westus")
Suggested answer: B

Explanation:

Many of the Cognitive Services have a free tier you can use to try the service. To use the free tier, use F0 as the SKU for your resource. There are two tiers of keys for the Custom Vision service. You can sign up for a F0 (free) or S0 (standard) subscription through the Azure portal.

Incorrect Answers:

A: There is no free tier (F0) for ComputerVision.

Reference:

https://docs.microsoft.com/en-us/azure/cognitive-services/cognitive-services-apis-create-account-client-library?pivots=programming-language-csharp

https://docs.microsoft.com/en-us/azure/cognitive-services/custom-vision-service/limits-and-quotas

asked 26/09/2024
Pedro Pereira
36 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first