Microsoft Certified: Azure Administrator Associate (Exam AZ-104) Flashcards

Card 1 of 300 mastered
Say the answer out loud before flipping.
Browse all 30 cards
  1. What is the renewal assessment like compared to the original AZ-104 exam?

    It is shorter, unproctored, and open book, and can be completed online within a six-month renewal window before expiration.

  2. What is a resource group in Azure?

    A logical container that holds related resources for an Azure solution, used as the primary unit for applying access control, tags, and lifecycle management (deploy, update, delete together).

  3. What are the five functional domains measured by Exam AZ-104?

    Manage Azure identities and governance; implement and manage storage; deploy and manage Azure compute resources; implement and manage virtual networking; and monitor and maintain Azure resources.

  4. How long do candidates have to complete Exam AZ-104?

    100 minutes, with an additional 30 minutes available if the candidate's preferred language is not offered for the exam.

  5. What is the passing score for AZ-104?

    700 or greater on a scale of 1 to 1,000.

  6. Is there a penalty for guessing on AZ-104?

    No. No points are deducted for incorrect answers, so candidates should answer every question rather than leave it blank.

  7. Who administers AZ-104 exam proctoring?

    Pearson VUE, and the exam may include interactive, performance-based components in addition to multiple-choice items.

  8. How soon can a candidate retake AZ-104 after a failed attempt?

    24 hours after the first attempt.

  9. What does the AZ-104 score report include?

    An overall numeric score, a pass/fail result, and a bar chart showing performance broken down by skill area (domain).

  10. How often must the Azure Administrator Associate certification be renewed, and what does renewal cost?

    Renewal is required every 12 months, and renewal itself is free.

  11. What is Azure Role-Based Access Control (RBAC)?

    An authorization system built on Azure Resource Manager that grants fine-grained access to Azure resources by assigning roles (collections of permissions) to users, groups, service principals, or managed identities at a management group, subscription, resource group, or resource scope.

  12. What is the Azure resource hierarchy from top to bottom?

    Management groups, then subscriptions, then resource groups, then individual resources.

  13. What is an Azure Policy used for?

    To enforce organizational rules and effects (such as deny, audit, or append) on resource properties during creation and update, ensuring compliance with standards like naming conventions or allowed regions, distinct from RBAC which controls who can act.

  14. What is the difference between Azure AD (Microsoft Entra ID) users and groups for access management?

    Users are individual identities; groups aggregate users (or other groups) so administrators can assign roles and permissions once to the group rather than to each user individually.

  15. What is a Network Security Group (NSG) in Azure?

    A set of inbound and outbound security rules that filter network traffic by source/destination IP, port, and protocol, applied to subnets or individual network interfaces.

  16. What is Azure Virtual Network (VNet) peering?

    A mechanism that connects two virtual networks so resources in each can communicate directly using private IP addresses, without traversing the public internet, and (by default) without transitive routing through a peered network.

  17. What is the purpose of an Azure Load Balancer versus Application Gateway?

    Azure Load Balancer operates at Layer 4 (TCP/UDP) distributing traffic across VMs based on network-level rules, while Application Gateway is a Layer 7 web traffic load balancer that can route based on URL path/host and provides features like SSL termination and a web application firewall.

  18. What is a public IP address SKU consideration in Azure (Basic vs Standard)?

    Standard SKU public IPs are secure by default (require an explicit NSG rule to allow traffic) and support availability zones, while Basic SKU is open by default and does not support zone redundancy.

  19. What is Azure Storage account redundancy: LRS vs GRS?

    Locally Redundant Storage (LRS) replicates data three times within a single datacenter/region, while Geo-Redundant Storage (GRS) additionally replicates asynchronously to a secondary, geographically distant region for disaster recovery.

  20. What are the main Azure Blob storage access tiers?

    Hot (frequently accessed, higher storage cost/lower access cost), Cool (infrequently accessed, lower storage cost/higher access cost, minimum retention expectations), and Archive (rarely accessed, lowest storage cost, offline and requires rehydration before access).

  21. What is Azure File Sync used for?

    It centralizes an organization's file shares in Azure Files while keeping the flexibility, performance, and compatibility of an on-premises file server through caching (cloud tiering) on a Windows Server endpoint.

  22. What is a Shared Access Signature (SAS) in Azure Storage?

    A URI that grants delegated, time-limited access to specific storage resources with defined permissions, without sharing the account's access keys.

  23. What is an Azure Availability Set?

    A logical grouping of VMs within a datacenter that spreads them across fault domains (separate power/network) and update domains (separate maintenance windows) to reduce the chance of correlated downtime.

  24. What is an Azure Availability Zone?

    A physically separate location within an Azure region, each with independent power, cooling, and networking, used to protect applications and data from datacenter-level failures with higher resiliency than availability sets alone.

  25. What is a VM Scale Set?

    An Azure compute resource that lets you deploy and manage a group of identical, load-balanced VMs, with the ability to automatically increase or decrease the number of instances based on demand or a defined schedule.

  26. What is Azure Update Manager (formerly Update Management) used for?

    To assess and manage OS updates for Windows and Linux VMs across Azure, on-premises, and other clouds, allowing scheduled and controlled patch deployment.

  27. What is Azure Monitor and how do metrics differ from logs?

    Azure Monitor is the platform for collecting, analyzing, and acting on telemetry; metrics are lightweight numerical time-series values (e.g., CPU percentage) good for near-real-time alerting, while logs are structured event records queried with Kusto Query Language (KQL) for deeper analysis.

  28. What is the purpose of Azure Backup?

    A managed service that centrally protects and restores data for VMs, files, folders, and other workloads by taking scheduled backups stored in a Recovery Services vault.

  29. What is Azure Site Recovery used for?

    Disaster recovery that replicates workloads (VMs, physical servers) running in a primary location to a secondary location, and orchestrates failover and failback if an outage occurs.

  30. What is the difference between a service principal and a managed identity?

    A service principal is an identity created for an application or service to access Azure resources, typically requiring credential management; a managed identity is an automatically managed identity in Microsoft Entra ID tied to an Azure resource that eliminates the need to store credentials in code.