AZ-104 Learning Portal

Last-Minute Review

The 50 most-tested facts across AZ-104 — read this the morning of your exam

Domain 1

Identities & Governance · 10 facts

1

Contributor cannot assign rolesOnly Owner and User Access Administrator can assign roles. Contributor has full resource management but zero access management.

2

RBAC is additiveIf a user has Reader on subscription AND Contributor on a resource group, they have Contributor rights within that resource group.

3

Deny assignments take precedenceA deny assignment blocks access even if a role assignment grants it. Deny assignments are mostly created by Azure Blueprints and managed apps.

4

CanNotDelete vs ReadOnly locksCanNotDelete: read and modify, but cannot delete. ReadOnly: read only — even Owners cannot modify or delete. Both block deletion.

5

ReadOnly lock on storage accountPrevents listing keys (because listing keys grants write access). This surprises many candidates.

6

Tags do NOT inheritTags on a resource group do not automatically apply to child resources. Use Azure Policy (Inherit a tag from the resource group) to enforce inheritance.

7

Azure Policy — Deny effectReturns HTTP 403 immediately. The non-compliant resource is never created. DeployIfNotExists creates a remediation resource; it does not block the original.

8

Management group limitsMaximum 10,000 management groups per tenant. Maximum 6 levels of hierarchy depth (not counting the root). One root management group per tenant.

9

SSPR "Selected" = one group onlySSPR can be enabled for All users, or Selected (a single Entra group). It cannot target multiple groups — use a nested group.

10

Dynamic group membership delayDynamic group rule evaluation is asynchronous. Newly created users matching the rule may take up to 24 hours to appear in the group.

Domain 2

Storage · 10 facts

1

GRS vs RA-GRSGRS replicates to a secondary region but secondary reads are NOT available. RA-GRS adds a secondary read endpoint (*.secondary.blob.core.windows.net).

2

Archive rehydration timeStandard priority: up to 15 hours. High priority: under 1 hour (for objects under 10 GB). You cannot read an archived blob without rehydrating first.

3

User delegation SASSigned with an Entra ID credential (not an account key). Most secure SAS type. Key rotation does NOT invalidate user delegation SAS — revoke the delegation key instead.

4

Stored access policy + service SASA stored access policy lets you revoke a service SAS without rotating the account key. Account SAS and user delegation SAS do NOT support stored access policies.

5

Object replication prerequisitesBoth source and destination accounts must have blob versioning AND change feed enabled. Object replication is asynchronous — no RPO guarantee.

6

Soft delete is per featureBlob soft delete, container soft delete, and Azure Files soft delete are THREE separate settings. Enabling one does not enable the others.

7

Lifecycle management cannot rehydrateLifecycle management rules can tier blobs DOWN (Hot→Cool→Cold→Archive) but cannot rehydrate blobs UP from Archive.

8

NFS Azure Files = Premium onlyNFS 4.1 file shares require a Premium (FileStorage) storage account and must be accessed over a private network (no public endpoint for NFS).

9

Storage firewall default actionAdding VNet or IP rules does nothing until you change the default action to "Deny". Both settings must be configured for the firewall to take effect.

10

AzCopy sync is one-directionalAzCopy sync copies changed/new files from source to destination but does NOT delete destination files that no longer exist in source (unless --delete-destination=true).

Domain 3

Compute · 10 facts

1

Availability Set vs Availability ZoneSets: fault domains (rack isolation) + update domains, 99.95% SLA. Zones: datacenter isolation, 99.99% SLA. Mutually exclusive — choose one at VM creation time.

2

Cannot add VM to availability set post-creationThe availability set must be selected when the VM is created. To change it, you must delete and recreate the VM.

3

Encryption at host ≠ Azure Disk EncryptionEncryption at host encrypts the VM host (temp disk + OS/data disk caches). ADE encrypts the disk itself using BitLocker/dm-crypt inside the VM. They serve different purposes.

4

VMSS Flexible is now recommendedFlexible orchestration supports heterogeneous VM sizes and mixes availability zones/sets. Uniform orchestration is legacy for stateless workloads.

5

App Service autoscale = Standard tier minimumFree, Shared, and Basic tiers do NOT support autoscale. Standard (and above) is required for scale-out rules.

6

Deployment slots = Standard tier minimumStaging slots (beyond the production slot) require Standard or above. Basic provides only the production slot.

7

Slot swap behaviorSwap exchanges the running code and configuration. Slot-sticky settings stay with their slot and are NOT swapped — useful for connection strings that differ per environment.

8

ACR geo-replication = Premium onlyBasic and Standard ACR tiers do not support geo-replication. Only Premium supports multiple regional replicas.

9

ARM Complete mode is destructiveComplete mode deletes resources in Azure that are NOT in the template. Incremental mode (default) only adds/updates — it never deletes existing resources.

10

Bicep compiles to ARMBicep is a DSL that compiles down to ARM JSON. `az bicep decompile` converts ARM JSON to Bicep (best-effort). `az bicep build` converts Bicep to ARM JSON.

Domain 4

Virtual Networking · 10 facts

1

5 reserved addresses per subnet.0 (network), .1 (gateway), .2 (DNS), .3 (DNS), .255 (broadcast). A /28 subnet has 16 addresses — only 11 are usable.

2

VNet peering is non-transitiveIf A peers with B, and B peers with C, A cannot reach C via B without enabling "Use remote gateway" or adding a direct A↔C peer.

3

NSG lower number = higher priorityRule 100 is evaluated before rule 200. The first matching rule wins. Default deny rules have priorities 65000+.

4

NSG health probe source IP = 168.63.129.16Azure Load Balancer health probes originate from 168.63.129.16. If an NSG blocks this, health probes fail and the backend is removed from the pool.

5

Service endpoint vs private endpointService endpoint: traffic stays on Azure backbone, source IP = VNet IP, service stays public. Private endpoint: PaaS service gets a private IP in your VNet, accessible from on-premises.

6

Azure Bastion SKU differencesDeveloper: free, shared infrastructure, no custom VNet. Basic: deployed in your VNet, RDP/SSH. Standard: custom ports, IP-based connection. Premium: session recording.

7

Private endpoint DNS resolutionPrivate endpoints require a private DNS zone (e.g. privatelink.blob.core.windows.net). Without it, the FQDN resolves to the public IP, bypassing the private endpoint.

8

UDR Next Hop "None" = black holeSetting next hop type to None drops all matching traffic silently. Used to prevent traffic from leaving a VNet for specific prefixes.

9

Standard LB is zone-redundant by defaultStandard Load Balancer supports Availability Zones and HTTPS health probes. Basic LB does not support zones and does not support Standard public IPs.

10

Auto-registration: one VNet per private DNS zoneA private DNS zone supports auto-registration from only one VNet (the registration VNet). Multiple resolution VNets can be linked but only one can auto-register.

Domain 5

Monitor & Maintain · 10 facts

1

Platform metrics = automatic, 93-day retentionCollected for all Azure resources with no configuration. Retained for 93 days. No cost for standard platform metrics.

2

Logs require a diagnostic settingResource logs are NOT collected automatically. You must configure a diagnostic setting to route them to Log Analytics, Storage, Event Hub, or a partner solution.

3

Log Analytics default retention = 30 daysConfigurable up to 730 days (2 years) at no extra charge within the workspace. Extended retention beyond 730 days requires archive tier.

4

IP Flow Verify vs Next HopIP Flow Verify tests if a packet is allowed or denied by NSG rules. Next Hop shows the routing decision (where the packet will be sent). Different tools for different problems.

5

Alert processing rules ≠ alert rulesAlert rules define when an alert fires. Alert processing rules modify what happens when an alert fires (suppress, reroute, add action group). They are separate resources.

6

VM Insights Map requires Dependency AgentThe Performance tab works with just the Azure Monitor Agent. The Map tab (showing connections between VMs and processes) requires the Dependency Agent as well.

7

Recovery Services vault vs Backup vaultRSV: VMs, SQL in VM, SAP HANA, Azure Files. Backup vault: Azure Blobs, Azure Disks, PostgreSQL. Use the newer Backup vault for blob and disk workloads.

8

RSV storage replication type locks after first backupYou can change LRS/GRS/ZRS on a Recovery Services vault before the first backup is registered. After the first backup, the setting is locked.

9

ASR test failover is non-disruptiveTest failover spins up VMs in an isolated network without affecting production. It does NOT affect the replication state. Always run a test failover before a real failover.

10

Reprotect before failbackAfter failing over to the secondary region, you MUST reprotect (reverse replication direction) before you can fail back. Reprotect is not optional.

If you score ≥80% on Mock 6, you're ready.

Go pass it.

Go to Mock Exams →