Udemy Set Flashcards

1
Q

What is the minimum App Service Plan tier that allows you to extract metrics such as CPU percentage?

A

Basic

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

Your company uses Azure AD Connect to synchronize Azure AD with your on-prem AD. Does AD Connect store your users passwords in Azure?

A

Only Password Hashes are stored in Azure AD

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

What type of Automation Runbooks does Azure support?

A

Graphical-Graphical runbook based on Windows PowerShell and created and edited completely in the graphical editor in Azure portal.

Graphical PowerShell WorkflowGraphical runbook based on Windows PowerShell Workflow and created and edited completely in the graphical editor in Azure portal.

PowerShell Textual runbook based on Windows PowerShell scripting.

PowerShell Workflow Textual runbook based on Windows PowerShell Workflow scripting.

PythonTextual runbook based on Python scripting.

https://docs.microsoft.com/en-us/azure/automation/automation-runbook-types

https://docs.microsoft.com/en-us/azure/automation/learn/powershell-runbook-managed-identity

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

You would love to be able to use Azure Logic Apps to add records into your company CRM, but no standard connector exists for that software. The app has an API. How to you get Logic apps to send data to your company CRM?

A

Develop a custon connector

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

CompanyA has one Azure AD Tenant, which is the main tenant for their organization. A non-administrative user of CompanyA decides to create a new tenant called CompanyATest and begins creating test resources in that new tenant. This user leaves the organization and is removed from CompanyA AAD account. Do they lose access to CompanyATest too?

A

No, Tenants are distict form one another.

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

In Azure Monitor, you are running some reports on your virtual machines and notice one particular virtual machine is not being reported on. You need to collect guest-level diagnostics from that machine. Which tab of the Virtual Machine blade in the Azure Portal allows you to turn on guest-level monitoring?

A

Monitoring > Insights

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

Which Azure CLI command will create a container image of your code and automatically deploy to Azure Container Registry?

A

az acr build

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

After the initial backup is complete, what type of backup does Azure Backup perform for Azure Virtual Machine Backups?

A

Incremental

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

You are registering a new application to use the Microsoft Identity platform and Azure AD. You need employees of your own organization plus employees of other organizations (business partners) to use this application. You don’t want anyone not part of a trusted organization to sign up. What type of application must you register?

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

What is the guaranteed Service Level Agreement percentage for Azure App Services single instance?

A

99.95

Microsoft guarantees that Apps running in a customer subscription will be available 99.95% of the time. No SLA is provided for Apps under either the Free or Shared tiers. Refer to Microsoft Doc: https://www.azure.cn/en-us/support/sla/app-service/

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

Why should a developer choose to deploy a container to a Web App for Containers instead of Azure Kubernetes Service?

A

It’s fucking easier

Web App for Containers is much easier to deploy and control than a Kubernetes cluster. You get a lot of the developer-friendly features of Azure App Services, and avoid having to start and control clusters of computers. Refer to Microsoft Doc: https://azure.microsoft.com/en-ca/blog/webapp-for-containers-overview/

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

Which of the following statements best describes Azure Table Storage

A

A noSQL Data store capable of storing large amounts of sturctured data.

Azure Table storage is a service that stores non-relational structured data (also known as structured NoSQL data) in the cloud, providing a key/attribute store with a schemaless design. Because Table storage is schemaless, it’s easy to adapt your data as the needs of your application evolve. Access to Table storage data is fast and cost-effective for many types of applications, and is typically lower in cost than traditional SQL for similar volumes of data. Please see https://docs.microsoft.com/en-us/azure/storage/tables/table-storage-overview

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

Which Azure CLI command will list all of the available regions that you have access to for a particular resource?

A

az provider show –namespace {resource}

az provider show –namespace {resource} will show all regions that you have access to. Refer to Microsoft Doc: https://docs.microsoft.com/en-us/cli/azure/provider?view=azure-cli-latest#az_provider_show

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

You would like to receive an email every time a new Azure Container Registry is created. Which of the following steps would accomplish that goal?

A

Go into Azure Monitor. Go into Alerrs. Select the Subscription scope. Select the Create or Update Container Registry Signal. Add the action group that emails you. Give it a name and save it.

Azure Monitor can do this natively. You can create an Alert in Azure Monitor, based on the Create or Update Container Registry signal. Refer to Microsoft Doc:https://docs.microsoft.com/en-us/azure/container-registry/monitor-service

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

Which library allows you to develop and test Azure Functions locally before deploying into Azure?

A

Core tools on all os platforms.

Azure Functions Core Tools provides the core runtime and templates for creating functions, which enable local development. Version 2.X supports development on Windows, Linux and MacOS. Refer to Microsoft Doc: https://docs.microsoft.com/en-us/azure/azure-functions/functions-develop-local

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

How can you create a shared access signature and modify the expiry date and time after it’s already been created?

A

Create the SAS with a stored Access Policy

A shared access signature (SAS) provides secure delegated access to resources in your storage account. With a SAS, you have granular control over how a client can access your data. A stored access policy is defined on a resource container, which can be a blob container, table, queue, or file share. The stored access policy can be used to manage constraints for one or more service shared access signatures. When you associate a service SAS with a stored access policy, the SAS inherits the constraints-the start time, expiry time, and permissions-defined for the stored access policy. You can modify the stored access policy at any time after the SAS has been created. Refer to Microsoft Doc: https://docs.microsoft.com/en-us/azure/storage/common/storage-sas-overview