Azure Fundamentals AZ-900 Sign in Try 10 free questions

Free AZ-900 practice questions: Management & Governance

The domain the exam leans on hardest at 30–35% — where the whole vocabulary of who-can-do-what and what-is-allowed gets tested — AZ-900, 2026 edition.

Here are 7 typical management-and-governance questions in the exam's own style — free, each answer explained, no sign-up.

Straight to the 7 free questions ↓

Azure Management & Governance is the heaviest slice of the AZ-900, weighted at 30–35% of scored content — and, more usefully, it is the most learnable slice. This is not a domain of architecture puzzles; it is a domain of vocabulary. Learn a compact set of terms precisely, and roughly a third of the exam turns into recognition rather than reasoning. The governance map above is the whole domain on one page — read it top to bottom, then keep it in your head.

The hierarchy is the backbone — learn it top-down

Everything in this domain hangs off one four-level tree: Management Groups → Subscriptions → Resource Groups → Resources. Management groups contain subscriptions, subscriptions contain resource groups, resource groups contain the actual resources — a VM, a storage account, a database. The single fact the exam rewards most is that settings flow downward: assign a permission or a policy high up, and everything beneath inherits it. Want one standard across two subscriptions at once? You apply it at the management-group level above both. A resource group, by contrast, lives inside exactly one subscription and can never span two — a favorite distractor.

RBAC vs Azure Policy: two questions, never confuse them

These two are the beating heart of the domain, and almost every governance question is secretly testing whether you can tell them apart. Reduce each to a single question:

  • RBACwho can do what, and where? Role-based access control assigns a role (like Reader, Contributor, Owner, or a narrower built-in role such as Virtual Machine Contributor) to a principal, at a scope. It governs the permissions of people and identities. Least privilege is the reflex it rewards: the narrowest role at the smallest scope that still does the job.
  • Azure Policywhat is allowed to exist? It audits or enforces rules on the resources themselves, no matter who creates them. A policy can deny resources in the wrong region, require a tag, or flag non-compliant configurations. It does not care who the user is.

As the diagram shows, both run as vertical bands down the side of the same hierarchy and both inherit downward — but one guards identities and the other guards resources. If a question is about a person’s abilities, it’s RBAC. If it’s about which resources or settings are permitted, it’s Policy.

The three cost tools do three different jobs

The exam reliably tests whether you can match a cost tool to a moment in time:

ToolJobThe tell
Pricing CalculatorEstimate the price of a deployment before you build it”How much will this cost?”
TCO CalculatorCompare on-premises vs. Azure for a migration business case”On-prem versus cloud”
Azure Cost Management (+ Budgets)Track and alert on what you’re already spending”What am I spending now?”

Two are planning calculators; one monitors live spend and raises budget alerts. Keep the timeline straight and this cluster of questions becomes free points.

Monitor, Advisor, Defender — collect, advise, secure

Three more names, three clean lanes:

  • Azure Monitor collects — metrics, logs, and alerts. It gives you the raw signal of what is happening.
  • Azure Advisor advises — a free, prioritized to-do list across reliability, security, cost, and performance for the resources you already run.
  • Microsoft Defender for Cloud secures — it scores your security posture as a Secure Score and hands you hardening steps. “Secure Score” is its signature phrase.

Round it off with the Service Trust Portal, where Microsoft publishes its own audit reports and compliance certifications (SOC, ISO) — the platform’s paperwork, as opposed to your resources’ compliance, which is Azure Policy’s job. The exam mixes multiple-choice, true/false, and matching formats; our seven sample questions below are standard multiple-choice, and every explanation carries a “why not the others” so the three wrong options — the ones that won’t introduce themselves on exam day — become just as instructive as the right one.

A governance map of Microsoft Azure drawn as a four-level hierarchy stacked top to bottom: a management group at the top, containing two subscriptions, each containing resource groups, each holding individual resources such as a virtual machine and a storage account. Two vertical bands run down the side of the whole hierarchy as cross-cutting controls: RBAC, which decides who can do what and can be assigned at any level and inherited downward, and Azure Policy, which decides what is allowed to exist and audits or enforces rules at any level. A small separate cluster on the right groups the cost and health tools — Azure Cost Management with Budgets, Azure Monitor, Azure Advisor and Microsoft Defender for Cloud with its Secure Score. The point of the picture: permissions and policy both flow down the same tree, and the cost and monitoring tools observe it from the side.

7 free AZ-900 practice questions

Answers and explanations — no email wall
AZ-900 Question 1 of 7

A new team member needs to start and restart the virtual machines in one resource group, but must not be able to create new resources, change networking, or touch anything in other resource groups. What is the least-privilege way to grant this in Microsoft Azure?

Answer: A — Assign the built-in Virtual Machine Contributor role, scoped to that resource group.

RBAC answers 'who can do what, and where' with three parts: a security principal, a role definition, and a scope. Virtual Machine Contributor lets you manage VMs (start, restart, resize) without granting access to the network or the ability to hand out access, and scoping it to the one resource group contains the blast radius. Why not the others: Contributor at subscription scope can create and change almost anything across every resource group — far too broad. Owner adds the power to grant others access on top of full control, which is more than restarting VMs needs. Azure Policy is the wrong tool entirely here — it governs what resources are allowed to exist, not who may act on them. Pro tip: when a question says 'must not be able to,' it is asking for the narrowest built-in role at the smallest scope.

AZ-900 Question 2 of 7

Your organization requires that no storage account can ever be created outside the West Europe region, and any attempt to do so should be blocked automatically — not just flagged afterward. Which Azure capability enforces this?

Answer: A — An Azure Policy with a 'deny' effect that restricts allowed locations.

This is the core RBAC-versus-Policy distinction the exam loves. Azure Policy decides what is allowed to exist; a policy with a deny effect on allowed locations stops a non-compliant resource from ever being created. RBAC only decides who can perform an action — it cannot say 'this account may create storage, but only in West Europe.' Why not the others: an RBAC assignment grants or withholds an action wholesale; it has no notion of the resource's region as a condition. Defender for Cloud produces security recommendations and a score — it observes and advises, it does not block resource creation. An Azure Monitor alert can tell you after the fact that something was created, but alerting is not enforcement. Pro tip: 'who can' = RBAC, 'what is allowed' = Azure Policy.

AZ-900 Question 3 of 7

A company has separate subscriptions for Production and Development. Leadership wants one place to apply a spending and tagging standard across both subscriptions at once, without editing each subscription individually. What should they use?

Answer: A — Place both subscriptions under a management group and apply the policy at that level.

Azure's management scope is a hierarchy — management groups contain subscriptions, subscriptions contain resource groups, resource groups contain resources — and policy and access assignments flow downward through it. A management group is the level built precisely for applying one standard across many subscriptions at once. Why not the others: a resource group cannot span two subscriptions — it lives inside exactly one, so it can't be the shared control point. Applying the policy per resource group is the manual, error-prone opposite of 'in one place.' Merging subscriptions is a drastic, often impossible change that also throws away the Production/Development separation the company wanted. Pro tip: learn the tree top-down — Management Groups, Subscriptions, Resource Groups, Resources — and remember settings inherit downward.

AZ-900 Question 4 of 7

A team wants a monthly alert when their actual Azure spend crosses a threshold on resources they are already running, and the ability to see cost broken down by resource group and tag. Which tool fits?

Answer: A — Azure Cost Management, with a budget configured.

Three cost tools, three different jobs — the exam tests whether you can tell them apart. Azure Cost Management analyzes what you have already spent on live resources, and its Budgets feature raises alerts when actual or forecast cost crosses a threshold; it also slices spend by resource group and tag. Why not the others: the Pricing Calculator estimates the price of a deployment before you build it — a planning tool, not a monitor of live spend. The TCO Calculator compares the cost of running on-premises versus in Azure to build a migration business case; it says nothing about your running resources. Azure Advisor recommends ways to cut cost (among other things) but does not itself track spend or send budget alerts. Pro tip: 'before you build' = Pricing/TCO Calculators, 'what I'm spending now' = Cost Management + Budgets.

AZ-900 Question 5 of 7

A cloud engineer wants free, personalized recommendations to improve the reliability, security, cost, and performance of resources already deployed in their subscription — a prioritized to-do list, not raw metrics. Which service provides this?

Answer: A — Azure Advisor.

Azure Advisor is the recommendations engine: it inspects your deployed resources and returns a prioritized list of actions across reliability, security, cost, performance, and operational excellence. Why not the others: Azure Monitor is the data-collection and observability platform — it gathers metrics and logs and fires alerts, giving you the raw signal rather than a curated to-do list. (A useful pairing to remember: Monitor collects and tells you what is happening; Advisor interprets and tells you what to do about it.) Azure Policy governs what is allowed to exist, not tuning advice. Cost Management tracks spend, which is only one of the areas Advisor covers. Pro tip: Advisor = advice (a checklist), Monitor = measurement (the raw data).

AZ-900 Question 6 of 7

During an audit, your team needs a single security posture score for the subscription plus concrete steps to harden misconfigured resources such as VMs and storage accounts. Which Azure service surfaces this score?

Answer: A — Microsoft Defender for Cloud, via its Secure Score.

Microsoft Defender for Cloud assesses the security posture of your resources and expresses it as Secure Score — a single percentage backed by prioritized hardening actions, exactly the audit artifact described. Why not the others: Microsoft Entra ID is the identity and access-management service (users, groups, sign-in) — it is not the resource-security-posture scorer. Advisor's cost recommendations are about spend, not a security score. The Pricing Calculator estimates deployment cost and has nothing to do with security posture. Pro tip: 'Secure Score' is the giveaway phrase — it belongs to Microsoft Defender for Cloud.

AZ-900 Question 7 of 7

A prospective customer's procurement team asks for Microsoft Azure's audit reports and compliance certifications — SOC, ISO, and similar — to confirm the platform meets their regulatory obligations. Where does Microsoft make these documents available?

Answer: A — The Service Trust Portal.

The Service Trust Portal is Microsoft's published home for audit reports, compliance certifications, and data-protection documentation covering its cloud services — the place procurement teams pull SOC and ISO reports. Why not the others: Azure Advisor gives recommendations about your own resources, not Microsoft's platform-wide certifications. The Azure Monitor activity log records operations within your subscription — who did what — not third-party audit attestations. An Azure Policy compliance report tells you whether your resources satisfy your policies; it is about your compliance state, not Microsoft's platform certifications. Pro tip: platform certifications and audit reports = Service Trust Portal; your own resources' compliance against your rules = Azure Policy.

That is exactly how every question in the course works — answer, explanation, why-not. The real set continues in the practice player: 10 free questions, no sign-up.

Continue with the 10 free questions →

Those 7 questions were the start.

The exam does not test whether you recognise a term — it tests whether you can rule out three plausible answers under time pressure. That is what the explanations above are for, and there are 300 more questions built exactly like them.

Collecting questions yourself

  • Scattered across forums, of unknown age
  • Answer keys without reasoning
  • No idea which domain you are weak in

Practising with a system

  • 300 questions in 6 full tests, AZ-900 (2026)
  • Every option explained — including the wrong ones
  • Readiness per exam domain, and drills for your weakest
Start free — 10 questions

Straight into the player. No account, no email.

Frequently asked questions

Why is Management & Governance the domain to master first for the AZ-900?
Because it is the exam's heaviest domain, weighted at 30–35% of scored content, and because its vocabulary — RBAC, Azure Policy, management groups, the cost tools — reappears woven into questions from the other domains. Nailing these terms early pays off across the whole exam. Our simulator draws each practice run in the official blueprint proportions, so this domain gets the share of your attention the real exam gives it.
How do I stop confusing RBAC and Azure Policy?
Reduce each to one question. RBAC answers 'who can do what, and at which scope' — it is about permissions for people and identities. Azure Policy answers 'what is allowed to exist' — it audits or enforces rules on the resources themselves, regardless of who creates them. A question about a person's abilities is RBAC; a question about which resources or configurations are permitted is Policy. They are complementary controls, not alternatives, and both flow down the same management hierarchy.
Are these real exam questions?
No. They are our own questions, written in the style and difficulty of the AZ-900 — never copied from any question bank or the real exam. Reproducing live exam items violates Microsoft's certification agreement and can cost a candidate their certification, and a crammed answer teaches you nothing about the one you have not seen.

Updated for AZ-900 (July 2026). The sample questions above are our own work in the style of the exam — not real exam items. The exam itself is set and marked by the certification body.