AI-102 • Practice Test 11
Free AI-102 practice test — 15 questions with explanations. Set 11. No signup required.
Refer to the exhibit. You deploy an Azure AI Services multi-service account using this ARM template. After deployment, developers cannot access the service from their local machines. What is the most likely reason?
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"resources": [
{
"type": "Microsoft.CognitiveServices/accounts",
"apiVersion": "2023-05-01",
"name": "myaiservices",
"location": "[resourceGroup().location]",
"sku": {
"name": "S0"
},
"kind": "AIServices",
"properties": {
"customSubDomainName": "myaiservices",
"networkAcls": {
"defaultAction": "Deny"
}
}
}
]
}