HOTSPOT
-
You plan to provision Azure Cognitive Services resources by using the following method.
You need to create a Standard tier resource that will convert scanned receipts into text.
//IMG//
How should you call the method? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
//IMG//
static void provision_resource(CognitiveServicesManagementClient client, string name, string kind, string tier, string location)
{
CognitiveServicesAccount parameters =
new CognitiveServicesAccount(null, null, kind, location, name,
new CognitiveServicesAccountProperties(), new Sku(tier));
result = client.Accounts.Create(resource_group_name, tier, parameters);
}Correct slot values