Skip to content

Latest commit

 

History

History
316 lines (166 loc) · 5.35 KB

Test_your_knowledge_questions.md

File metadata and controls

316 lines (166 loc) · 5.35 KB

Back to main

Test your knowledge - Questions

Topics




Question 1:

What are roles and how to use them?



Return to top | Back to main



Question 1

You have an Azure subscription that contains multiple users and administrators. You are creating a new custom role by using the following JSON.

{   
  "Name": "Custom Role",   
  "Id": null,   
  "IsCustom": true,   
  "Description": "Custom Role description",   
  "Actions": [
    "Microsoft.Compute/*/read",
    "Microsoft.Compute/snapshots/write",
    "Microsoft.Compute/snapshots/read",
    "Microsoft.Support/*"
  ],
  "NotActions": [   
          "Microsoft.Compute/snapshots/delete"   
  ],
  "AssignableScopes": [
    "/subscriptions/00000000-0000-0000-0000-000000000000",
    "/subscriptions/11111111-1111-1111-1111-111111111111"
  ] 
} 

Which three actions can be performed by a user that is assigned the custom role? Each correct answer presents a complete solution.

Select all answers that apply.

  1. Call Microsoft Support.
  2. Create and delete a snapshot.
  3. Create and read a snapshot.
  4. Create virtual machines.
  5. Read all virtual machine settings.


Return to top | Back to main



Question 1:

If there are many ways and tools to do this, which one do I use? Bicep, ARM Templates or some third party tool like Terraform?



Return to top | Back to main



Question 1

If there are many ways and tools to do this, which one do I use? Bicep, ARM Templates or some third party tool like Terraform?


Question 2

Explain what you mean by:

  • Understanding Azure Active Directory
  • Key Features of Azure AD
  • The Benefits of Azure AD
  • Azure AD the competitive edge

Question 3

What is the difference between a tenant an Azure Active Directory\Entra?


Question 4

You plan to create 100 new users by using the Bulk create users operation in the Azure portal. You need to create a CSV file that contains the user information. Which attributes should you specify in the CSV file for each user?

Select only one answer.

  1. displayName, givenName, surname, and department
  2. displayName, userPrincipalName, passwordProfile, and accountEnabled
  3. givenName, surname, usageLocation, and department
  4. userPrincipalName, givenName, usageLocation, and country


Return to top | Back to main



Question 1:

Your company has VMs in Azure that are in the VNet1 azure virtual network,Employees work from their home office and need access to the VMs in VNet1. You need to make sure they have secure access. What should you do?

  1. Configure a Site-to-Site VPN.
  2. Configure a Windows Server 2012 on-premises with DirectAccess
  3. Configure Point-Site-VPN for each worker
  4. Configure a Virtual WAN.
  5. Configure a Express Route VPN.


Return to top | Back to main



Question 1

What is Azure Storage Account Object Replication?



Return to top | Back to main



Question 1

When would I use Availability Sets vs Virtual Machine Scale Sets?


Question 2

If we have 2 VMSS autoscaling profiles one for "scaling using a metric" and another one for scaling using a schedule, so if there is a conflict which policy would take effect



Return to top | Back to main



Question 1

If I want to make use of slots purely to get a zero downtime deployment, what do I have to do and what configuration options offer this.



Return to top | Back to main



Question 1:

Can you backup your virtual machines to the cloud from your office?



Return to top | Back to main



Question 1:

When regulating access to an Azure Kubernetes service (AKS), are there other options as opposed to only using Kubernetes built-in role based access control (RBAC)




Back to main