Compute
Questions¶
-
Which PowerShell cmdlet must execute prior to using
Get-AzRecoveryServicesBackupJob?Set-AzRecoveryServicesVaultContext -
Which statement regarding Azure VM backups is correct?
The initial VM recovery point takes longer than subsequent ones.
-
A backed up item contains the following data:
Resource Group: MyRG Subscription Id: 00000000 Vault Name: demoVault API version: 2022-04-20
-
How would you validate the operation for this item?
POST https://management.azure.com/resourceGroups/myRG/ subscriptions/00000000/providers/Microsoft.RecoveryServices/ vaults/demoVault/backupValidateOperation?api-version=2022-04-20the subscription always goes first. -
Which
New-AzResourceGroupDeploymentcmdlet parameter passes the template’s parameter values?-TemplateParameterFile -
Which Azure CLI command prefix deploys resources using an ARM template?
az deployment group create -
You must fetch a list of recovery points using Azure Site Recovery. You must fetch the points using a replication protected
itemobject. How can you do this using PowerShell?**Get-AzRecoveryServicesAsrRecoveryPoint -ReplicationProtectedItem $item** -
You are using Powershell to fetch Azure backup jobs for a vault. Which Powershell cmdlet will you run?
Get-AzRecoveryServicesBackupJob -
You created a virtual machine (VM) that's configured to serve web requests on the standard Transmission Control Protocol (TCP) port 80. What priority value is allowed while creating an inbound security rule?
A value that is less than 65,500 and higher in priority than the default catch-all deny inbound rule
-
You have downloaded and installed the Microsoft Azure Site Recovery Unified Setup for migration of on-premises physical machines to Azure. Which command creates management accounts on the Configuration Server?
cspsconfigtool
-
Your Azure Resource Manager (ARM) template must specify a single data disk added to newly deployed virtual machines. What is missing from the following ARM template syntax?
"lun": 1, -
You have failed over an on-premises virtual machine for migration to Azure. After verifying the failover completion on the Jobs page, what should you do next?
Choose the “Complete Migration” option
-
You must specify a Domain Name System (DNS) domain name for a virtual machine network interface. How can you confirm the availability of
contoso.centralus.cloudapp.azure.com?Test-AzDnsAvailability -DomainNameLabel contoso -Location centralus -
You must add an existing managed data disk to an existing Azure virtual machine. Which PowerShell statement will accomplish this?
$vm = Add-AzVMDataDisk -CreateOption Attach -Lun 0 -VM $vm -ManagedDiskId $disk.Id -
Which PowerShell cmdlet deploys an Azure Resource Manager (ARM) template?
New-AzArmResourceGroupDeployment -
Which Powershell cmdlet results in the following output?
DisplayName
----------
East Asia
Southeast Asia
Central US
East US
East US 2
West Us
North Central US
South Central US
North Europe
West Europe
Get-AzRegion | select DisplayName