Ref AZ-204 - Chapter 1 (Answered & Graded)
Azure App Service and Azure Functions are what form of aaS (As A Service) - Correct Answer Platform as
a Service
IaaS offers what in compared to Paas - Correct Answer Higher level of control, but also more
management is needed
Azure supports what OS's when creating VM's? - Correct Answer Windows, Windows Server, Multiple
Linux Distro's
How long may the name of a VM be? - Correct Answer 15 Characters
By default what is the limit of VM's per subscription per region? - Correct Answer 20 VM's per region
What file type for storage is needed for VM's? - Correct Answer .vhd stored as page blobs
When creating a VM what are the steps taken? - Correct Answer 1. Create the Resource Group
2. Create a virtual network
3.Create a virtual NIC
4. Create the VM
If creating a vm using Visual Studio what extension is needed? - Correct Answer Omnishare
When creating a .NET Core console application, what file holds your variables that include things like
subscription id, key, tenant etc.
subscription=<subscription-id>
,client=<client-id>
key=<client-secret>
tenant=<tenant-id>
managementURI=https://management.core.windows.net/
baseURL=https://management.azure.com/
authURL=https://login.windows.net/
graphURL=https://graph.windows.net/ - Correct Answer azureauth.properties
What does an availability set do in regards to a VM - Correct Answer It places the copies of your VM on
different hardware so that if there is an update, it can only affect one system at a time and you will not
lose connectivity.
Availability set needs to be created before... - Correct Answer The VM
What does Azure provide for you to filter traffic between Azure resources and different networks? -
Correct Answer Network Security Groups
What Remote protocols are by default enabled when creating a Windows VM? Linux? - Correct Answer
RDP for Windows
SSH for Linux
What 3 items are needed before you can enable remote access to a VM - Correct Answer Public IP
Network Security Group
Security Rule
What is ARM - Correct Answer Azure Resource Manager
Considered Infrastructure as Code, has constant behavior between multiple mechanisms, Deployment
and management service in Azure
What is a Resource in regards to ARM - Correct Answer Items you can manage in Azure
, What is a Resource Group in regards to ARM - Correct Answer Container for holding resources
What is a Resource Provider in regards to ARM - Correct Answer Service that offers different kinds of AZ
resources, and manages the resources lifecycle.
What is a Resource Manager template in regards to ARM - Correct Answer The file that you need to
provide to the ARM API when you want to deploy one or more resources to a resource group or
subscription. Written in JSON
What is Microsoft.Compute? - Correct Answer Service in charge of providing VM resources
What is Microsoft.Storage - Correct Answer Provider for Storage Accounts
What is Microsoft.Network - Correct Answer Provider for all networking resources
What is the main advantage of ARM templates? - Correct Answer Having the definition of all resources
that you want to deploy in a consistent structure. Allowing the reuse of templates for deploying to the
same group of resources in different subscriptions, resource groups, etc.
What are some scenarios where ARM templates are useful - Correct Answer DRP implementation, High
availability configs, or automatic provisioning
Basic JSON ARM template example. - Correct Answer {
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.
json#",
"contentVersion": "",
"parameters": { },
"variables": { },
"functions": [ ],
"resources": [ ],