Microsoft Azure

 40 Minutes
 20 Questions


This test covers the basics of Microsoft Azure technology, including the Command Line Interface (CLI), Key Vault, Storage, ARM template, and Pipelines. It is designed to assess a candidate's knowledge of the fundamentals of Microsoft Azure and their ability to use the various tools and services available. The test will include questions on topics such as setting up an account, creating resources, configuring security settings, deploying applications using ARM templates, and creating pipelines for automated deployments.


Example Question:

Multiple-Choice
Which of the following is correct regarding the following template?



{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"storageNamePrefix": {
"type": "string",
"maxLength": 11
}
},
"functions": [
{
"namespace": "contoso",
"members": {
"uniqueName": {
"parameters": [
{
"name": "namePrefix",
"type": "string"
}
],
"output": {
"type": "string",
"value": "[concat(toLower(parameters('namePrefix')), uniqueString(resourceGroup().id))]"
}
}
}
}
],
"resources": [
{
"type": "Microsoft.Storage/storageAccounts",
"apiVersion": "2019-04-01",
"name": "[contoso.uniqueName(parameters('storageNamePrefix'))]",
"location": "South Central US",
"sku": {
"name": "Standard_LRS"
},
"kind": "StorageV2",
"properties": {
"supportsHttpsTrafficOnly": true
}
}
]
}