nerdexam
Microsoft

AI-102 · Question #24

You have the following C# method for creating Azure AI service resources programmatically. You need to call the function to create a free Azure resource in the West US Azure region. The resource…

The correct answer is A. create_resource(client, "res1", "ComputerVision", "F0", "westus"). There is free tier available for Computer Vision service. - Free - Web/Container - 5,000 free transactions per month Only ComputerVision allows you to generate descriptions. Custom vision is used to build custom models for image classification and other basic stuff, not complex…

Submitted by weili_xi· Mar 30, 2026Implement Computer Vision solutions

Question

You have the following C# method for creating Azure AI service resources programmatically. You need to call the function 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?

Exhibit

AI-102 question #24 exhibit

Options

  • Acreate_resource(client, "res1", "ComputerVision", "F0", "westus")
  • Bcreate_resource(client, "res1", "CustomVision.Prediction", "F0", "westus")
  • Ccreate_resource(client, "res1", "ComputerVision", "S0", "westus")
  • Dcreate_resource(client, "res1", "CustomVision.Prediction", "S0", "westus")

How the community answered

(52 responses)
  • A
    83% (43)
  • B
    4% (2)
  • C
    12% (6)
  • D
    2% (1)

Explanation

There is free tier available for Computer Vision service. - Free - Web/Container - 5,000 free transactions per month Only ComputerVision allows you to generate descriptions. Custom vision is used to build custom models for image classification and other basic stuff, not complex tasks like description https://azure.microsoft.com/en-us/pricing/details/cognitive-services/computer-vision/

Topics

#Azure Computer Vision#Azure AI provisioning#Azure AI SKUs

Community Discussion

No community discussion yet for this question.

Full AI-102 Practice