Microsoft Azure Administrator Associate AZ 104 Practice test 1

© examsnet.com
Question : 26
Total: 50
HOTSPOT
You have an Azure subscription that contains a virtual network named VNET1 in the East US 2 region. A network interface named VM1-NI is connected to VNET1.
You successfully deploy the following resources in an Azure Resource Manager template.
{
"apiVersion": "2017-03-30",
"type": "Microsoft.Compute/virtualMachines",
"name": "VM1"
"zones". "1",
"location": "EastUS2",
"dependsOn": [
"[resourceld('Microsoft.Network/networkinterfaces, "VM1-NI')]"
].
"
properties": {
"
hardwareProfile": {
"
vmSize": "Standard_A2_v2"
}.
"
osProfile":{
"
computerName": "VM1".
"
adminUsername": "AzureAdmin",
"
adminPassword": "[parameters('adminPassword')]"
},
"
storageProfile": {
"
imageReference": "[variables('image')]".
"
osDisk": (
"
createOption": "Fromimage"
}
"
networkProfile": {
"
networkinterfaces": [
net
"
id": "[resourceld('Microsoft.Network/networkinterfaces', "VM1-NI')]"
}
]
}
}
}
{
"apiVersion": "2017-03-30",
"type": "Microsoft. Compute/virtualMachines".
"name": "VM2",
"zones": "2",
"location": "EastUS2",
"dependsOn": [
"[resourceld('Microsoft.Network/networkinterfaces', 'VM2-NI')]"
"properties": {
"hardwareProfile": {
"vmSize": "Standard_A2_v2"
}
"osProfile": {
"computerName": "VM2",
"adminUsername": "AzureAdmin",
"adminPassword": "[parameters('adminPassword')]"}.
"storageProfile": {
"imageReference": "[variables('image')]".
"osDisk": {
"createOption": "Fromimage"}
"networkProfile": {
"networkinterfaces": [
{
"id": "[resourceld(Microsoft. Network/networkinterfaces', 'VM2-NI')]"
}
]
}
}
}
For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.
Hot Area:
  • VM1 and VM2 can connect to VNET1 ______

  • If an Azure datacenter becomes unavailable, VM1 or VM2 will be available. ______

  • If the East US 2 region becomes unavailable, VM1 or VM2 will be available. ______

Go to Question: