3.2 Describe Azure management tools Flashcards

1
Q

What is Azure portal?

A

It is the first page you access when logging into Azure.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What library does PowerShell AZ use for functionality?

A

It uses the .NET Standard library. It functions with PowerShell version 5.x 6.x 7.x

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What PowerShell versions are cross-platform functional?

A

PowerShell 6.x and 7.x are cross-functional and can work with Windows/Linux/or macOS

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What command do you run to install the PowerShell AZ module?

A

Install-Module -Name Az -AllowClobber

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How do you install the PowerShell AZ module for only your account?

A

Install-Module -Name Az -AllowClobber -Scope CurrentUser

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How do you connect to your Azure account once the PowerShell AZ module is installed?

A

Use the command

Connect-AzAccount

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What command ensures that commands entered in PowerShell AZ affect other Azure Subscriptions?

A

Set-AzContext -Subscription “subscription_id”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How do PowerShell command syntax begin?

A

With a verb and an object (New, Get, Remove, Move)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How can you create an Azure Resource Group named MyRG in the South Central US region using PowerShell?

A

New-AzResourceGroup -Name MyRG -Location “South Central US”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How can you remove a resource group named MyRG using PowerShell?

A

Remove-AzResourceGroup -Name MyRG

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How can you set an active subscription if you have multiple subscriptions (using PowerShell)

A

Set-AzContext -Subscription “subscription_id”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the -Force parameter used for in PowerShell?

A

If you cannot confirm a command by typing “y”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How do you login to Azure using the PowerShell CLI?

A

az login

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

When scripting with PowerShell or CLI, why must you include the -Force parameter?

A

Without this parameter, the script will not work. This parameter ensures no prompts are displayed when running a script.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is interactive mode in the CLI and how do you access it?

A

Interactive mode provides you with auto-complete, scoping of commands, ect.

use the command:
az interactive

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

How can you find a list of all available extensions in Azure CLI?

A

az extension list-available –output table

17
Q

how do you install an extension in Azure CLI?

A

az extension add –name extension_name

18
Q

What must you install on your mobile device if you wish to manage Azure?

A

Install Azure mobile app

19
Q

What must you install if you wish to access Azure VMs from your mobile device?

A

Install Azure mobile apps AND Microsoft Remote Desktop app

20
Q

What is Azure Advisor?

A

It offers advice about high availability, security, performance, and cost.

21
Q

What kind of syntax does Azure Resource Manager use (ARM)?

A

It users a declarative syntax

22
Q

What are Azure Resource Manager (ARM) templates?

A

ARM templates contain lists of resources you want to create or modify.

23
Q

When deploying multiple web resources that have service dependencies, how can you ensure those dependencies are enabled to avoid a deployment failure?

A

Using an ARM template, specify which dependencies the deployment requires and the ARM template takes care of it.

24
Q

What is Azure Monitor?

A

It aggregates metrics for Azure services and exposes them in a single interface. You must configure and add the metrics you wish to be monitored.

25
Q

What is Azure Service Health?

A

It provides you with the health of specific Azure services that you are running. It is specific to the services in your environment. It is more specific than Azure Monitor, which monitors the cost and performance of resources.