This free AZ-900 study guide walks through every skill area the Microsoft Certified: Azure Fundamentals (AZ-900) exam tests, organized to the current official Microsoft study guide.[1]
It’s interactive, not a wall of text: every module has built-in checkpoint quizzes, flashcards, and practice questions, so you learn by doing — not just reading.
AZ-900 tests three official skill areas. We teach them in three study modules, leading with the heaviest-weighted content. Read a module, test yourself at each checkpoint, then drill gaps with our free practice test and flashcards. This guide is a high-yield overview that maps the official content — not a full Azure reference manual.
AZ-900 Exam Snapshot
| Detail | AZ-900 Exam |
|---|---|
| Questions | Not published; Microsoft exams typically have 40–60 |
| Format | Multiple choice, drag-and-drop, hot area & other interactive types |
| Time | 45 minutes (≈65 minutes total seat time) |
| Passing score | 700 on a scale of 1–1000 (compensatory scoring) |
| Cost | $99 USD (priced by region via Pearson VUE) |
| Delivery | Online proctored or test center (Pearson VUE / Certiport) |
| Certifying body | Microsoft |
| Prerequisites | None (beginner level) |
| Validity | Does not expire |
| Skills measured as of | January 14, 2026 |
AZ-900 covers three skill areas. The largest by far is Azure architecture & services (35–40%), so that is where to invest first, followed by management & governance.[1] Study by weight:
Module 1 · Azure Architecture & Services
35–40% of the exam — the single largest skill area. This is the catalog of what Azure actually offers: the global infrastructure your workloads run on, the management hierarchy that organizes them, and the core compute, networking, storage, and identity services. Knowing what each service does and when to use it is the highest-yield knowledge on the test.
1.1 Core Architectural Components
Azure’s physical footprint is a hierarchy. An is a set of datacenters in a latency-defined area. Within an enabled region are at least three — physically separate datacenters with independent power, cooling, and networking. Two regions in a geography form a for disaster recovery, and some workloads use an isolated .[4]
Region (primary)
Zone 1
1+ datacenters
Zone 2
1+ datacenters
Zone 3
1+ datacenters
Paired region (for DR)
Zone 1
1+ datacenters
Zone 2
1+ datacenters
Zone 3
1+ datacenters
Logically, resources are organized top-down: a contains , a subscription contains , and a resource group contains . Governance applied higher up — a policy on a management group — is inherited by everything below it. A resource lives in exactly one resource group.[5]
Management group
Apply policy & access across many subscriptions at once.
Subscription
A billing & access boundary that holds resource groups.
Resource group
A logical container; a resource lives in exactly one group.
Resources
| Level | What it is | Used for |
|---|---|---|
| Management group | A container above subscriptions | Apply policy & access across many subscriptions at once |
| Subscription | A billing & access boundary | Separate environments, departments, or cost centers |
| Resource group | A logical container for resources | Group resources that share a lifecycle |
| Resource | A single Azure service instance | The thing you actually deploy (VM, storage account, etc.) |
1.2 Compute & Networking
Compute spans a spectrum of control. (IaaS) give you a full OS to manage; (PaaS) hosts web apps without managing servers; and (serverless) runs event-triggered code with nothing to provision. Containers sit between them — for a single container and for orchestration at scale. A runs identical, autoscaling VMs.
Networking centers on the (VNet) — your private network in Azure, divided into subnets and secured with a . links two VNets privately. To reach on-premises, a sends encrypted traffic over the internet, while uses a private, dedicated connection that bypasses the public internet entirely.
| Service | Model | Best for |
|---|---|---|
| Azure Virtual Machines | IaaS | Full OS control; lift-and-shift; custom configurations |
| Azure App Service | PaaS | Hosting web apps and APIs without managing servers |
| Azure Functions | Serverless | Short, event-triggered code; pay only while it runs |
| Container Instances (ACI) | Containers | Running a single container with minimal management |
| Azure Kubernetes Service (AKS) | Containers | Orchestrating containerized apps at scale |
| Option | How it connects | Best for |
|---|---|---|
| VPN Gateway | Encrypted tunnel over the public internet | Cost-effective, secure connectivity |
| ExpressRoute | Private, dedicated connection (no public internet) | Predictable performance and high bandwidth |
| VNet peering | Private link between two Azure VNets | Connecting virtual networks within Azure |
1.3 Storage
Azure Storage data lives in a . holds unstructured objects (files, images, video, backups) and uses an — hot, cool, cold, or archive — to trade storage cost against retrieval cost. provides mountable SMB/NFS file shares, and is the managed block storage attached to a VM.
Durability comes from redundancy. keeps three copies in one datacenter; copies across availability zones; adds a copy in a paired region to survive a regional outage; and combines zone and geo redundancy for the highest durability.[6]
- 1
LRS — Locally redundant
3 copies in a single datacenter. Lowest cost, lowest durability.
- 2
ZRS — Zone redundant
3 copies across availability zones in one region. Survives a datacenter failure.
- 3
GRS — Geo redundant
LRS in the primary region + a copy in a paired region. Survives a regional outage.
- 4
GZRS — Geo-zone redundant
ZRS in the primary region + a copy in a paired region. Highest durability.
| Item | What it is | Use it for |
|---|---|---|
| Blob Storage | Object storage for unstructured data | Files, images, video, backups, data lakes |
| Azure Files | Managed SMB/NFS file shares | Shared drives mountable by cloud and on-prem machines |
| Disk Storage | Managed block storage for VMs | OS and data disks attached to a virtual machine |
| Hot tier | Frequent access | Data accessed often; lowest access cost |
| Cool / Cold tier | Infrequent access (30+ / 90+ days) | Backups and older data accessed rarely |
| Archive tier | Offline, rarely accessed | Lowest storage cost; must rehydrate before reading |
1.4 Identity, Access & Security
(formerly Azure Active Directory) is Azure’s cloud identity service. It handles (proving who you are) and works with (what you may do). Key features include (SSO), (MFA), and , which grants or blocks access based on signals like location, device, and risk.[7]
Azure security follows — layered defenses — and a mindset that verifies every request and grants least privilege. continuously assesses your posture, gives a secure score, and detects threats across Azure, hybrid, and multicloud.[10]
- 1
Physical security
Datacenter access controls (Microsoft's responsibility)
- 2
Identity & access
Microsoft Entra ID, MFA, Conditional Access, least privilege
- 3
Perimeter
DDoS protection, perimeter firewalls
- 4
Network
Segmentation, NSGs, deny-by-default, limit east-west traffic
- 5
Compute
Secure access to VMs, patching, endpoint protection
- 6
Application
Secure code, no stored secrets, vulnerability scanning
- 7
Data
Encryption at rest & in transit; access controls
| Item | What it does |
|---|---|
| Microsoft Entra ID | Cloud identity and access management (authentication) |
| Single sign-on (SSO) | Sign in once, access many apps without re-entering credentials |
| Multifactor authentication (MFA) | Require two or more verification factors to sign in |
| Conditional Access | Grant or block access based on user, location, device, and risk |
| Defense in depth | Layered security so one breached layer doesn't expose everything |
| Microsoft Defender for Cloud | Posture management, secure score, and threat detection |
Checkpoint · Azure Architecture & Services
Question 1 of 10
What is an Azure region?
Module 2 · Management & Governance
30–35% of the exam — the second-largest skill area. Once you know what Azure offers, this area is about running it well: controlling cost, enforcing standards and compliance, deploying resources consistently, and monitoring everything. These are the tools that keep a cloud estate cheap, compliant, and healthy.
2.1 Cost Management
Azure cost depends on resource type, services used, region, and especially data egress (outbound traffic is charged; inbound is usually free). Two tools help you plan: the estimates the cost of a planned deployment, while the compares your current on-premises costs against Azure to show migration savings. After deployment, tracks spend, sets budgets, and fires alerts; a groups costs by team or project.
You can lower cost with (a one- or three-year commitment for a discount), the (reuse existing Windows/SQL Server licenses), spot VMs for interruptible work, and by right-sizing or shutting down idle resources.
| Tool | What it does |
|---|---|
| Pricing Calculator | Estimates the cost of a planned Azure deployment before you build |
| TCO Calculator | Compares on-premises cost vs. Azure to estimate migration savings |
| Microsoft Cost Management | Tracks actual spend, sets budgets, and sends cost alerts |
| Tags | Group and report costs by department, project, or environment |
| Azure Reservations / Hybrid Benefit | Commit or reuse licenses to discount steady workloads |
2.2 Governance & Compliance
Governance keeps a growing estate consistent. controls what resources can be — it enforces standards (e.g., allow resources only in certain regions) and reports compliance.
(RBAC) controls who can do what, by assigning roles at a scope that is inherited downward.[8][9] A prevents accidental deletion or modification, and governs and classifies data across the estate.
| Tool | It controls… | Example |
|---|---|---|
| Azure Policy | WHAT resources can be (configuration / standards) | Allow VMs only in approved regions |
| Role-based access control (RBAC) | WHO can do WHICH actions (access) | Give a team read-only access to a resource group |
| Resource lock | Whether a resource can be changed or deleted | Block deletion of a production database |
| Microsoft Purview | Discovery and classification of data | Catalog and label sensitive data across sources |
2.3 Managing & Deploying Resources
You can manage Azure several ways: the graphical , the browser-based (Bash or PowerShell), the Azure CLI and Azure PowerShell, and the mobile app. To manage resources outside Azure — on-premises, edge, or other clouds — use .
For repeatable deployments, use (IaC). Every management request goes through the (ARM), and an (or the cleaner Bicep language) defines resources declaratively so you can deploy the same environment again and again.
| Tool | What it is | Best for |
|---|---|---|
| Azure portal | Web-based graphical console | Visual management and exploration |
| Cloud Shell / CLI / PowerShell | Command-line management | Scripting and automation of resources |
| Azure Arc | Extends Azure management beyond Azure | Governing on-prem, edge, and multicloud resources |
| ARM templates / Bicep | Infrastructure as code (declarative) | Repeatable, consistent deployments |
2.4 Monitoring Tools
Three services answer three different questions. gives personalized recommendations across cost, security, reliability, performance, and operational excellence. tells you about Azure outages and maintenance affecting your resources. collects and analyzes metrics and logs from your environment — including for querying logs and for application performance.[11]
| Tool | Answers the question… |
|---|---|
| Azure Advisor | How can I improve cost, security, reliability, performance, and operations? |
| Azure Service Health | Is an Azure outage or maintenance affecting my resources? |
| Azure Monitor | How are my resources and apps performing (metrics & logs)? |
| Log Analytics | What do my collected logs show when I query them? |
| Application Insights | How is my live application performing for users? |
Checkpoint · Management & Governance
Question 1 of 10
A subscription owner notices that an idle virtual machine still incurs charges for its attached managed disk even though the VM is stopped. Which principle about Azure costs does this illustrate?
Module 3 · Cloud Concepts
25–30% of the exam. This is the “why the cloud” foundation — what cloud computing is, how security responsibility is shared, the benefits that make the cloud compelling, and the three service types (IaaS, PaaS, SaaS). It is conceptual, high-yield, and the bedrock for everything else.
3.1 Cloud Computing & the Shared Responsibility Model
is the delivery of computing services over the internet on a . Security is governed by the : Microsoft is always responsible for the physical hosts, network, and datacenter; the customer is always responsible for their information and data, devices, and accounts and identities. Everything in between shifts with the service type.[3]
Always the customer
- Information & data
- Devices (mobile and PCs)
- Accounts & identities
Varies by service type
- Operating system
- Network controls
- Applications
- Identity & directory infrastructure
Shifts toward the customer for IaaS, toward Microsoft for SaaS.
Always Microsoft
- Physical hosts
- Physical network
- Physical datacenter
3.2 Benefits of Cloud Services
The cloud’s appeal comes from a handful of benefits. keeps services running across availability zones; and match resources to demand automatically; recovers from failure using redundant regions; and built-in security and governance, plus cloud manageability, reduce operational burden. Underpinning them is the shift from to .[1]
| Benefit | What it means |
|---|---|
| High availability | Services stay up with minimal downtime, often across availability zones |
| Scalability | Add or remove resources to match demand (scale up or scale out) |
| Elasticity | Automatically scale capacity in near real time as demand changes |
| Reliability | Recover from failure using redundant, decentralized regions |
| Predictability | Forecast performance and cost with autoscaling, load balancing, and tools |
| Security & governance | Built-in tools and templates help meet compliance consistently |
3.3 Cloud Service Types (IaaS / PaaS / SaaS)
The three service types differ by how much you manage. gives you virtualized infrastructure (Azure VMs) and you manage the OS and up — the most control and responsibility. gives a managed platform (Azure App Service) where you manage only apps and data. delivers finished software (Microsoft 365) where you manage little beyond your data and access.
On-premises
You manage everything
- Applications
- Data
- Runtime
- Middleware
- OS
- Virtualization
- Servers
- Storage
- Networking
IaaS
You manage OS & up
- Applications
- Data
- Runtime
- Middleware
- OS
- Virtualization
- Servers
- Storage
- Networking
PaaS
You manage apps & data
- Applications
- Data
- Runtime
- Middleware
- OS
- Virtualization
- Servers
- Storage
- Networking
SaaS
You manage your data only
- Applications
- Data
- Runtime
- Middleware
- OS
- Virtualization
- Servers
- Storage
- Networking
These map onto the deployment models too: a is shared and provider-run; a is exclusive to one organization; and a combines both so data and apps can move between them.
| Type | You manage | Example | Best for |
|---|---|---|---|
| IaaS | OS, runtime, apps, data | Azure Virtual Machines | Lift-and-shift; full control |
| PaaS | Apps and data | Azure App Service | Building apps without managing servers |
| SaaS | Data and access only | Microsoft 365 | Consuming ready-made software |
Checkpoint · Cloud Concepts
Question 1 of 10
Under the shared responsibility model, which set of items remains the customer's responsibility no matter which cloud service type is used?
How to Use This AZ-900 Study Guide
This guide is built to be worked, not just read. The most efficient path to a pass:
- Study by weight. Azure architecture & services (35–40%) is the biggest area — start there, then management & governance, then cloud concepts.
- Check off as you go. Use the Study Guide Contents to mark each section done; it raises your exam-readiness score.
- Take every checkpoint. The end-of-module quizzes show you exactly which skill areas need another pass.
- Drill the weak area. Send your weak topics into the flashcards and a practice test until the score climbs.
- Learn what each service does. This is a breadth exam — recognizing the job of each service beats memorizing configuration detail.
AZ-900 Concept Questions
Common Azure concepts candidates search while studying for AZ-900 — each answered briefly and backed by an official Microsoft source. Test yourself, then drill them as flashcards.
AZ-900 Glossary
The high-yield Azure terms in one place — hover any dotted term in the guide, or flip the whole deck here as a self-grading flashcard set.
- Access tier
- A Blob Storage setting (hot, cool, cold, archive) that trades storage cost against retrieval cost and speed.
- Application Insights
- An Azure Monitor feature for application performance monitoring of live web apps.
- ARM template
- A JSON file that defines Azure infrastructure as code for repeatable, declarative deployment.
- Authentication
- Proving who you are (AuthN), for example with a password and an MFA code.
- Authorization
- Determining what an authenticated identity is allowed to do (AuthZ).
- Availability zone
- A physically separate datacenter (or group) within a region, with independent power, cooling, and networking.
- Azure Advisor
- A free service giving personalized recommendations for cost, security, reliability, performance, and operations.
- Azure App Service
- A PaaS for hosting web apps and APIs without managing the underlying infrastructure.
- Azure Arc
- A service that extends Azure management and governance to on-premises, edge, and other clouds.
- Azure Cloud Shell
- A browser-based, authenticated shell (Bash or PowerShell) for managing Azure resources.
- Azure Container Instances
- The simplest way to run a single container in Azure without managing VMs (serverless containers).
- Azure Files
- Fully managed cloud file shares accessible over SMB or NFS that cloud and on-premises machines can mount.
- Azure Functions
- A serverless compute service that runs event-triggered code; you pay only while it runs.
- Azure Hybrid Benefit
- A license benefit that reuses existing Windows Server and SQL Server licenses to lower Azure cost.
- Azure Kubernetes Service
- AKS — a managed Kubernetes service for deploying and scaling containerized applications.
- Azure Monitor
- A platform service that collects and analyzes metrics and logs from Azure and on-premises resources.
- Azure Policy
- A governance service that enforces standards and assesses the compliance of resource configurations.
- Azure portal
- A web-based graphical console for building, managing, and monitoring Azure resources.
- Azure region
- A set of datacenters within a latency-defined perimeter connected by a dedicated low-latency network.
- Azure Reservations
- A one- or three-year commitment to a resource for a discount over pay-as-you-go pricing.
- Azure Resource Manager
- ARM — the deployment and management layer all Azure management requests pass through.
- Azure Service Health
- A service giving personalized alerts about Azure outages, maintenance, and health advisories.
- Azure Virtual Machine
- An on-demand, scalable IaaS compute resource that runs a full operating system.
- Blob Storage
- Object storage optimized for massive amounts of unstructured data such as text, images, and video.
- CapEx
- Capital expenditure — upfront spending on assets you own, such as servers and datacenters.
- Cloud computing
- The delivery of computing services — compute, storage, databases, networking, and software — over the internet, billed on a pay-as-you-go basis.
- Conditional Access
- An Entra policy that grants or blocks access based on signals like user, location, device, and risk.
- Consumption-based model
- Pricing where you pay only for the resources you use, with no upfront cost and no charge when you stop using a resource.
- Defense in depth
- A layered security strategy where multiple defenses each slow and stop attackers.
- Disk Storage
- Managed block-level storage volumes attached to Azure Virtual Machines, like a disk in a server.
- Elasticity
- The ability to automatically add or remove resources in near real time to match changing demand.
- ExpressRoute
- A private, dedicated connection between on-premises infrastructure and Azure that bypasses the public internet.
- GRS
- Geo-redundant storage — copies in a paired region to survive a regional outage.
- GZRS
- Geo-zone-redundant storage — zone redundancy plus a paired-region copy; the highest durability.
- High availability
- Designing a service to remain operational with minimal downtime, commonly by spreading across availability zones.
- Hybrid cloud
- A mix of public and private cloud that lets data and applications move between them for flexibility and compliance.
- IaaS
- Infrastructure as a Service — virtualized compute, storage, and networking where the customer manages the OS and above (e.g., Azure Virtual Machines).
- Infrastructure as code
- IaC — defining and deploying infrastructure declaratively through files such as ARM templates or Bicep.
- Log Analytics
- An Azure Monitor tool for writing and running queries against collected log data.
- LRS
- Locally redundant storage — three copies in a single datacenter; lowest cost and durability.
- Management group
- A container above subscriptions used to apply governance across many subscriptions at once.
- Microsoft Cost Management
- Tools to monitor, allocate, and optimize Azure spend with analysis, budgets, and alerts.
- Microsoft Defender for Cloud
- A tool for cloud security posture management and workload protection, with a secure score and threat detection.
- Microsoft Entra ID
- Microsoft's cloud identity and access management service (formerly Azure Active Directory).
- Microsoft Purview
- A unified data governance service to discover, catalog, classify, and manage data across an estate.
- Multifactor authentication
- MFA — requiring two or more verification factors to sign in for stronger security.
- Network Security Group
- An NSG — a set of inbound and outbound rules that allow or deny traffic to Azure resources.
- OpEx
- Operational expenditure — variable, pay-as-you-go spending on services as they are consumed.
- PaaS
- Platform as a Service — a managed platform where the provider runs the OS and infrastructure and the customer manages apps and data (e.g., Azure App Service).
- Pricing Calculator
- A free tool to estimate the cost of an Azure deployment before you build it.
- Private cloud
- Cloud resources used exclusively by one organization, on-premises or hosted, offering more control at higher cost.
- Public cloud
- Cloud services owned and operated by a third-party provider and shared across many customers, with no capital expense.
- Region pair
- Two regions in the same geography paired for disaster recovery and sequential (non-simultaneous) updates.
- Reliability
- A system's ability to recover from failure and keep functioning, supported by redundant regions worldwide.
- Resource
- A manageable item in Azure, such as a virtual machine, storage account, or virtual network.
- Resource group
- A logical container that holds related resources; a resource belongs to exactly one resource group.
- Resource lock
- A lock that prevents accidental deletion (CanNotDelete) or modification (ReadOnly) of a resource.
- Role-based access control
- Azure RBAC — granting users, groups, and apps only the access they need by assigning roles at a scope.
- SaaS
- Software as a Service — finished software delivered over the internet where the customer mainly manages data and access (e.g., Microsoft 365).
- Scalability
- The ability to add or remove resources to handle growth; scaling up adds power, scaling out adds instances.
- Serverless
- A model where the provider fully manages the infrastructure and you pay only while your code runs (Azure Functions).
- Service-level agreement
- An SLA — Microsoft's formal commitment on a service's uptime and performance, expressed as a percentage.
- Shared responsibility model
- The division of security duties between Microsoft and the customer; what each side owns shifts with the service type (IaaS, PaaS, SaaS).
- Single sign-on
- SSO — signing in once to access multiple applications without re-entering credentials.
- Sovereign region
- An isolated instance of Azure for specific compliance needs, such as Azure Government or Azure operated by 21Vianet.
- Storage account
- A container that holds Azure Storage data — blobs, files, queues, and tables — with a unique namespace.
- Subscription
- A logical unit of Azure services that sets a billing and access boundary and contains resource groups.
- Tag
- A name-value pair applied to resources to organize them and group costs for billing and reporting.
- TCO Calculator
- A tool that compares on-premises costs against Azure to estimate migration savings.
- Virtual Machine Scale Set
- A group of identical, load-balanced VMs that automatically scale out or in with demand.
- Virtual network
- A VNet — the fundamental building block for private networking in Azure.
- VNet peering
- Connecting two virtual networks so resources communicate using private IP addresses.
- VPN Gateway
- A service that sends encrypted traffic between Azure and an on-premises location over the internet.
- Zero Trust
- A model that assumes breach, verifies every request explicitly, and uses least-privilege access.
- ZRS
- Zone-redundant storage — copies across availability zones in one region.
AZ-900 Study Guide FAQ
Microsoft does not publish a fixed count; its exams typically have 40 to 60 questions. You have 45 minutes to complete the exam, with about 65 minutes of total seat time for instructions and the agreement. Question formats include multiple choice, drag-and-drop, and other interactive types.
From the official Microsoft study guide: Describe Azure architecture and services (35–40%), Describe Azure management and governance (30–35%), and Describe cloud concepts (25–30%). Architecture and services is the largest area, so lead your study there.
You need a score of 700 or greater on a scale of 1 to 1000. Microsoft uses compensatory scoring, so you pass on your overall score — you do not need to pass each skill area individually.
The exam fee is 99 USD in the United States; Microsoft prices it by country or region through Pearson VUE, so it can vary. Students and educators can take it through Certiport. Verify the current price for your region when you register.
No. Microsoft Fundamentals certifications, including Azure Fundamentals, do not expire and require no renewal. Role-based and specialty certifications do expire annually, but AZ-900 does not.
No. AZ-900 is a beginner-level certification with no prerequisites and is a common starting point in cloud. Microsoft recommends some general familiarity with technology, but it is designed for both technical and non-technical candidates.
It is the entry-level Azure certification and tests broad conceptual understanding rather than deep technical configuration — knowing what each service does, the shared responsibility model, the management hierarchy, and governance tools. The challenge is breadth, so organized review across all three skill areas is the key.
Yes. This study guide, the checkpoint quizzes, the glossary, the practice test, and the flashcards are 100% free with no account required.
References
- 1.Microsoft. “Microsoft Certified: Azure Fundamentals (AZ-900) Study Guide.” learn.microsoft.com. ↑
- 2.Microsoft. “Microsoft Certified: Azure Fundamentals — Certification Page.” learn.microsoft.com. ↑
- 3.Microsoft. “Shared responsibility in the cloud.” learn.microsoft.com. ↑
- 4.Microsoft. “Azure regions and availability zones.” learn.microsoft.com. ↑
- 5.Microsoft. “Azure Resource Manager — management hierarchy.” learn.microsoft.com. ↑
- 6.Microsoft. “Azure Storage redundancy.” learn.microsoft.com. ↑
- 7.Microsoft. “What is Microsoft Entra ID?.” learn.microsoft.com. ↑
- 8.Microsoft. “What is Azure Policy?.” learn.microsoft.com. ↑
- 9.Microsoft. “What is Azure RBAC?.” learn.microsoft.com. ↑
- 10.Microsoft. “What is Microsoft Defender for Cloud?.” learn.microsoft.com. ↑
- 11.Microsoft. “Azure Monitor overview.” learn.microsoft.com. ↑
- 12.Microsoft. “Exam duration and exam experience.” learn.microsoft.com. ↑
- 101.Microsoft. “Describe cloud service types.” learn.microsoft.com, accessed 19 June 2026. ↑
- 102.Microsoft. “Describe the types of cloud models.” learn.microsoft.com, accessed 19 June 2026. ↑
- 103.Microsoft. “Azure Functions overview.” learn.microsoft.com, accessed 19 June 2026. ↑
- 104.Microsoft. “Describe cloud computing.” learn.microsoft.com, accessed 19 June 2026. ↑
- 105.Microsoft. “Describe the benefits of using cloud services.” learn.microsoft.com, accessed 19 June 2026. ↑
- 106.Microsoft. “Azure Virtual Machines overview.” learn.microsoft.com, accessed 19 June 2026. ↑
- 107.Microsoft. “What is Azure Virtual Network?.” learn.microsoft.com, accessed 19 June 2026. ↑
- 108.Microsoft. “What is Azure ExpressRoute?.” learn.microsoft.com, accessed 19 June 2026. ↑
- 109.Microsoft. “Introduction to Azure Blob Storage.” learn.microsoft.com, accessed 19 June 2026. ↑
- 110.Microsoft. “What is Microsoft Cost Management?.” learn.microsoft.com, accessed 19 June 2026. ↑

Career Employer
Career Employer is the ultimate resource to help you get started working the job of your dreams. We cover topics from general career information, career searching, exam preparation with free study materials, career interviewing, and becoming successful in your career of choice.
All PostsCareer Employer’s Editorial Process
Here at Career Employer, we focus a lot on providing factually accurate information that is always up to date. We strive to provide correct information using strict editorial processes, article editing, and fact-checking for all of the information found on our website. We only utilize trustworthy and relevant resources. To find out more, make sure to read our full editorial process page here.
