Prerequisites for Azure administrators Flashcards

(53 cards)

1
Q

What is the primary way to interact with Azure

A

Azure Portal

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

What is the GUI based tool to interact with Azure?

A

Azure Portal

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

What is the CLI based tool to interact with Azure?

A

Azure PowerShell & Azure CLI

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

What is the web based CLI tool to interact with Azure?

A

Azure Cloud Shell

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

What is the mobile based tool to interact with Azure

A

Azure mobile App

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

What is Azure SDK?

A

Its a range of languages and frameworks and REST APIs to help manage and control Azure resources programmatically

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

azure portal URL?

A

portal.azure.com

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

Can we use azure portal for repetitive tasks like configure multiple VMs

A

we have to use Azure PowerShell and Azure CLI

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

What is Azure portal

A

Its a web application which lets you to interact with azure services & resources.

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

Can you customize dashboard in azure portal?

A

yes

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

What is Azure Copilot?

A

It help you design, operate, optimize, and troubleshoot your Azure apps and infrastructure

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

What is Azure Marketplace

A

Marketplace lets you find, try, purchase, and provision applications and services from hundreds of leading service providers, all certified to run on Azure

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

What is Azure Advisor?

A

Azure Advisor is a free service built into Azure that provides recommendations on high availability, security, performance, operational excellence, and cost

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

Which command is used in Azure PowerShell to create a VM?

A

New-AzVM

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

How Azure CLI works?

A

Its a command line program which connects to azure and execute administrative command on azure resources

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

Azure CLI works on which OS?

A

Windows, Linux, or macOS

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

where we use az login command?

A

Used Azure CLI for Azure login

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

Which command is used to create VM in azure CLI

A

az vm create

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

What is Azure Cloud Shell?

A

Its a browser-accessible shell for managing Azure resources using scripting tools like Azure CLI or Azure PowerShell

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

what is the use of Azure mobile app

A

It allows you to access, manage, and monitor all your Azure accounts and resources from your iOS or Android phone

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

What is Azure Copilot ?

A

Copilot in Azure can help you design, operate, optimize, and troubleshoot your Azure apps and infrastructure

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

where we can see the global controls in azure portal

A

top - right corner of the screen

23
Q

how to change Azure portal settings

A

click on gear icon on global controls in azure portal

24
Q

how to go to Support + troubleshooting pane

A

click on ? icon on global controls in azure portal

25
What is azure portal dashboard ?
A dashboard is a customizable collection of UI tiles displayed in the Azure portal
26
what is RBAC
role-based access control
27
how to try out prerelease features and services before they're rolled out to everyone
Azure Preview Features
28
Azure dashboard is stored as which type of file
JSON
29
Azure Advisor provides advice on which of these topics?
best practice & security
30
Can i use both Azure CLI & Azure Powershell in Azure Cloud Shell
yes
31
Which link directly open Azure Cloud Shell
https://shell.azure.com
32
Cloud Shell sessions terminate after how many minutes of inactivity
20
33
what is Azure CloudDrive
it is used to Persist files in Azure Cloud Shell
34
can you Persist files between sessions for later use in Azure cloud shell
yes using Azure CloudDrive
35
If you want to intend to leave a session open for more than 20 minutes for long running scripts or activities can you use azure cloud shell
No it will terminate the session without a warning
36
If You need admin permissions, such as sudo access, from within the Azure CLI or PowerShell environment can use azure cloud shell?
No
37
You need storage from different regions can you use azure cloud shell?
No
38
You need to open multiple sessions at the same time. Can you use azure cloud shell?
No
39
When to use cloud shell editor?
You have a script stored on the Cloud Shell storage. You constantly use this script for resource management, but you need to perform small changes to it.
40
You want to store a script that you constantly use for operations on Azure resources. This script needs to be rapidly available when you open a new Azure Cloud Shell session. Which of these procedures should you use?
Upload the script to cloud drive on a azure cloud shell
41
Which of these methods can you use to access Azure Cloud Shell from a computer running Windows 11?
Use web browser and open azure portal and open azure cloud shell
42
What are the two scripting language used in azure
Bash & Shell
43
What is the STD scripting language for Linux
Bash
44
Why we use bash commands?
To interact with Linux OS
45
What is the full syntax of bash command?
Command (option) (argument)
46
Why we use “ls” in bash?
To list content of current directory
47
Why we use command “ls /etc”
List content of etc directory
48
Why we use command “ls -al /etc”
Show all files and directories in long form
49
What is the use of command “man”
It’s a help command to get manual for specific commands like man mkdir
50
What is the use of “ - - help” command?
To get help
51
What is the wild card character in bash?
* ls *.png
52
What is use of command “cat”
53