Udemy Set Flashcards
What is the minimum App Service Plan tier that allows you to extract metrics such as CPU percentage?
Basic
Your company uses Azure AD Connect to synchronize Azure AD with your on-prem AD. Does AD Connect store your users passwords in Azure?
Only Password Hashes are stored in Azure AD
What type of Automation Runbooks does Azure support?
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
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?
Develop a custon connector
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?
No, Tenants are distict form one another.
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?
Monitoring > Insights
Which Azure CLI command will create a container image of your code and automatically deploy to Azure Container Registry?
az acr build
After the initial backup is complete, what type of backup does Azure Backup perform for Azure Virtual Machine Backups?
Incremental
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?
What is the guaranteed Service Level Agreement percentage for Azure App Services single instance?
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/
Why should a developer choose to deploy a container to a Web App for Containers instead of Azure Kubernetes Service?
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/
Which of the following statements best describes Azure Table Storage
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
Which Azure CLI command will list all of the available regions that you have access to for a particular resource?
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
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?
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
Which library allows you to develop and test Azure Functions locally before deploying into Azure?
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