Free Azure AZ-900 Exam Flashcards

Memorize 50 essential terms and definitions for the Microsoft Azure Fundamentals (AZ-900). See the term, recall the definition, then flip to check yourself.

50 Flashcards
5 Topics
100% Free
TermClick to flip

Cloud Computing

Tap to reveal definition
Card 1 of 50Cloud Concepts

Filter by Topic

Jump to Card

About These Azure AZ-900 Flashcards

These 50 flashcards are designed to help you memorize key terms and definitions for the Microsoft Azure Fundamentals (AZ-900). Each card shows a term on the front and its definition on the back—the classic flashcard format for vocabulary memorization. Use these alongside our practice questions to build both recall and comprehension.

Topics Covered

Cloud Concepts12 cards
Azure Architecture10 cards
Azure Services14 cards
Security & Compliance8 cards
Azure Pricing & Management6 cards

Complete Flashcard Reference

Review every term in this set. Open any term to reveal its definition.

Cloud Computing

The delivery of computing services including servers, storage, databases, networking, software, and analytics over the internet ('the cloud'). Cloud computing offers faster innovation, flexible resources, and economies of scale, allowing organizations to pay only for the cloud services they use, helping lower operating costs and scale as business needs change.

Shared Responsibility Model

A framework defining security responsibilities between cloud providers and customers. Microsoft manages security OF the cloud (physical infrastructure, network, hypervisor), while customers manage security IN the cloud (data, access, applications). The division varies by service type: IaaS requires more customer responsibility than PaaS or SaaS.

Public Cloud

Cloud resources owned and operated by third-party providers like Microsoft Azure, delivered over the public internet and shared among multiple organizations. Benefits include no capital expenditure, pay-as-you-go pricing, near-unlimited scalability, and high reliability. Organizations don't manage the underlying infrastructure.

Private Cloud

Cloud computing resources used exclusively by a single organization, hosted either on-premises or by a third party. Provides greater control and customization, enhanced security for sensitive data, and supports legacy applications. Requires higher capital expenditure and IT expertise to maintain.

Hybrid Cloud

A computing environment combining public and private clouds, allowing data and applications to be shared between them. Provides flexibility to run workloads where most appropriate, enables cloud bursting for peak demand, maintains compliance for sensitive data on-premises, and supports gradual cloud migration strategies.

Consumption-Based Model

A pricing model where you pay only for the resources you use, eliminating upfront infrastructure costs. Benefits include no wasted resources, ability to scale up or down based on demand, and operational expenditure (OpEx) instead of capital expenditure (CapEx). Azure meters track usage for accurate billing.

Infrastructure as a Service (IaaS)

Cloud service model providing virtualized computing resources over the internet. The provider manages hardware, networking, and virtualization while customers manage OS, middleware, and applications. Azure Virtual Machines is an example. Offers maximum flexibility and control but requires more management effort.

Platform as a Service (PaaS)

Cloud service model providing a platform for developing, running, and managing applications without managing underlying infrastructure. Azure App Service and Azure SQL Database are examples. Reduces development time, provides built-in scalability, and eliminates OS patching responsibilities.

Software as a Service (SaaS)

Cloud service model delivering fully managed applications over the internet on a subscription basis. Microsoft 365 and Dynamics 365 are examples. Users simply access software via browser with no installation, updates, or infrastructure management required. Provides predictable costs and automatic updates.

High Availability

The ability of a system to remain operational and accessible with minimal downtime, typically measured as a percentage (e.g., 99.99% uptime). Azure achieves this through redundant systems, availability zones, load balancing, and automatic failover. Service Level Agreements (SLAs) define guaranteed uptime levels.

Scalability

The ability to adjust resources to meet demand. Vertical scaling (scaling up) adds more CPU, RAM, or storage to existing resources. Horizontal scaling (scaling out) adds more instances of resources. Azure provides both manual and automatic scaling options to optimize performance and cost.

Serverless Computing

A cloud execution model where the provider dynamically manages server allocation. Azure Functions is the primary serverless compute service. You write code that runs in response to events without provisioning servers, paying only for execution time. Enables rapid development and automatic scaling to zero when idle.

Azure Regions

Geographical areas containing one or more datacenters that are nearby and networked together with low-latency connectivity. Azure has 60+ regions worldwide, more than any other cloud provider. Choose regions based on proximity to users, data residency requirements, service availability, and compliance needs.

Region Pairs

Two Azure regions within the same geography paired for disaster recovery and business continuity. Region pairs are at least 300 miles apart to minimize impact from regional disasters. Updates are rolled out sequentially to pairs, and data residency is maintained within the geography for compliance.

Availability Zones

Physically separate locations within an Azure region, each with independent power, cooling, and networking. Designed to protect against datacenter failures with 99.99% VM uptime SLA when deployed across zones. Connect zones with high-speed, private fiber-optic networks. Not all regions have availability zones.

Azure Resource Groups

Logical containers for Azure resources deployed together. Resources can only belong to one resource group. Used to organize resources by lifecycle, permissions, or project. Deleting a resource group deletes all contained resources. Apply role-based access control (RBAC) at the resource group level.

Azure Subscriptions

A logical unit of Azure services linked to an Azure account, providing authenticated and authorized access to Azure resources. Used as billing boundary and access control boundary. Organizations often use multiple subscriptions to separate environments, departments, or billing. Each subscription has resource limits.

Management Groups

Containers for organizing subscriptions into a hierarchy for unified policy and access management. Apply Azure Policy or RBAC at management group level to inherit across all child subscriptions. Up to six levels of depth supported. Root management group contains all subscriptions in a directory.

Azure Resource Manager (ARM)

The deployment and management service for Azure, providing a consistent management layer for all resource operations. ARM templates enable infrastructure as code with declarative JSON syntax. Benefits include dependency management, tagging, RBAC integration, and the ability to redeploy entire environments consistently.

Sovereign Regions

Azure regions isolated from the main Azure cloud to meet specific compliance and regulatory requirements. Examples include Azure Government (US government agencies) and Azure China (operated by 21Vianet). These regions have separate instances of Azure with dedicated infrastructure and compliance certifications.

Azure Datacenters

Physical facilities containing Azure's computing infrastructure, including servers, networking equipment, and storage systems. Datacenters feature advanced security, cooling systems, and redundant power. Multiple datacenters within a region provide fault tolerance. Microsoft operates over 200 datacenters globally.

Resource Hierarchy

Azure's organizational structure from top to bottom: Management Groups, Subscriptions, Resource Groups, and Resources. Policies and access controls applied at higher levels are inherited by lower levels. This hierarchy enables efficient governance, compliance, and cost management across large organizations.

Azure Virtual Machines

IaaS compute service providing on-demand, scalable virtual servers in the cloud. Choose from Windows or Linux operating systems with various sizes optimized for compute, memory, storage, or GPU workloads. Pay by the minute with options for reserved instances (up to 72% savings) or spot instances for interruptible workloads.

Azure Virtual Machine Scale Sets

Azure service that creates and manages a group of identical, load-balanced VMs. Automatically increases or decreases VM instances based on demand or schedule. Supports up to 1,000 VMs with Azure images or 600 with custom images. Ideal for large-scale services like web servers, batch processing, and big data.

Azure App Service

PaaS offering for building and hosting web apps, REST APIs, and mobile backends without managing infrastructure. Supports .NET, Java, Node.js, Python, PHP, and Ruby. Features include auto-scaling, CI/CD integration, custom domains, SSL certificates, and deployment slots for staging. Pay based on App Service Plan tier.

Azure Functions

Serverless compute service for running event-driven code without provisioning servers. Triggers include HTTP requests, timers, queues, and database changes. Supports C#, JavaScript, Python, Java, and PowerShell. Consumption plan charges only for execution time and memory used. Durable Functions enable stateful workflows.

Azure Container Instances (ACI)

Fastest and simplest way to run containers in Azure without managing virtual machines or orchestration. Start containers in seconds with per-second billing. Ideal for simple applications, task automation, and build jobs. Supports Linux and Windows containers with configurable CPU and memory.

Azure Kubernetes Service (AKS)

Managed Kubernetes container orchestration service that simplifies deploying, managing, and scaling containerized applications. Azure handles critical tasks like health monitoring, maintenance, and upgrades. Integrates with Azure Active Directory, Azure Monitor, and Azure Policy. No charge for cluster management, only pay for nodes.

Azure Virtual Desktop

Desktop and app virtualization service running in the cloud, delivering full Windows 11/10 desktops or published applications. Supports multi-session Windows, optimized for Microsoft 365 apps. Enables secure remote work from any device. Reduces costs with per-user licensing and centralized management.

Azure Blob Storage

Object storage solution optimized for storing massive amounts of unstructured data like images, videos, logs, and backups. Access tiers include Hot (frequent access), Cool (infrequent, 30-day minimum), Cold (rare access, 90-day minimum), and Archive (offline, 180-day minimum). Supports automatic lifecycle management policies.

Azure Files

Fully managed file shares in the cloud accessible via SMB (Server Message Block) and NFS (Network File System) protocols. Can be mounted concurrently by cloud and on-premises deployments. Azure File Sync caches shares on Windows Servers for fast local access. Ideal for lift-and-shift migrations.

Azure SQL Database

Fully managed PaaS relational database engine based on the latest stable SQL Server version. Handles patching, backups, and monitoring automatically. Features include built-in AI for performance tuning, geo-replication for disaster recovery, and serverless tier for intermittent workloads with auto-pause capability.

Azure Cosmos DB

Globally distributed, multi-model NoSQL database service with single-digit millisecond response times. Supports key-value, document, column-family, and graph data models. Offers multiple consistency levels from strong to eventual. Provides turnkey global distribution with multi-region writes and 99.999% availability SLA.

Azure Virtual Network (VNet)

Fundamental building block for private networks in Azure, enabling secure communication between Azure resources, internet, and on-premises networks. Features include subnets for segmentation, network security groups for filtering, VNet peering for cross-VNet connectivity, and service endpoints for secure access to Azure services.

Azure VPN Gateway

Virtual network gateway for sending encrypted traffic between Azure VNet and on-premises networks over the public internet (Site-to-Site VPN) or connecting individual devices (Point-to-Site VPN). Supports IKEv2 and SSTP protocols. Multiple gateway SKUs available for different bandwidth and feature requirements.

Azure ExpressRoute

Private, dedicated connection between on-premises infrastructure and Azure datacenters, not traversing the public internet. Offers more reliability, faster speeds (up to 100 Gbps), consistent latency, and higher security. Requires connectivity provider partnership. Ideal for large-scale data transfers and hybrid architectures.

Microsoft Entra ID (formerly Azure AD)

Cloud-based identity and access management service for signing in and accessing Microsoft cloud services, custom apps, and third-party SaaS applications. Features include single sign-on (SSO), multifactor authentication (MFA), conditional access policies, and B2B/B2C identity management. Different from on-premises Active Directory.

Multifactor Authentication (MFA)

Security method requiring two or more verification factors: something you know (password), something you have (phone/token), or something you are (biometrics). Microsoft Entra MFA significantly reduces risk of unauthorized access. Can be enforced through conditional access policies based on user, location, or device risk.

Azure Role-Based Access Control (RBAC)

Authorization system providing fine-grained access management for Azure resources. Assign roles (Owner, Contributor, Reader, or custom) to users, groups, or service principals at different scopes (management group, subscription, resource group, or resource). Follows principle of least privilege for security.

Zero Trust Model

Security framework assuming breach and verifying each request regardless of origin. Core principles: verify explicitly (always authenticate and authorize), use least privilege access, and assume breach (minimize blast radius and segment access). Microsoft implements Zero Trust across identity, endpoints, apps, data, infrastructure, and networks.

Defense in Depth

Layered security approach with multiple barriers protecting data. Layers include physical security (datacenters), identity and access (authentication), perimeter (DDoS protection), network (segmentation, NSGs), compute (endpoint protection), application (secure code), and data (encryption). If one layer fails, others continue protecting.

Microsoft Defender for Cloud

Cloud-native application protection platform (CNAPP) providing security posture management and threat protection. Continuously assesses resources for vulnerabilities, provides secure score and recommendations, and detects threats across Azure, hybrid, and multi-cloud environments. Free tier includes continuous assessments; advanced features require Defender plans.

Azure Policy

Service for creating, assigning, and managing policies that enforce rules and effects on resources. Ensures compliance with corporate standards and SLAs. Built-in policies include requiring tags, restricting VM sizes, or enforcing encryption. Policy initiatives group related policies. Non-compliant resources can be denied or audited.

Resource Locks

Protection mechanism preventing accidental deletion or modification of critical Azure resources. Two lock types: CanNotDelete (authorized users can read and modify but not delete) and ReadOnly (authorized users can read only). Locks are inherited from parent scopes. Only Owners and User Access Administrators can manage locks.

Azure Pricing Calculator

Web-based tool for estimating monthly Azure costs before deployment. Configure products, regions, tiers, and support options to generate detailed cost estimates. Save and share estimates, compare scenarios, and export to Excel. Essential for budgeting and planning cloud migrations or new projects.

Azure Cost Management

Suite of tools for monitoring, allocating, and optimizing cloud costs. Features include cost analysis with customizable views, budgets with alerts, recommendations for cost savings, and anomaly detection. Supports Azure, AWS, and Google Cloud. Helps organizations understand spending patterns and reduce waste.

Azure Tags

Name-value pairs for organizing and categorizing Azure resources for billing, management, and governance. Apply tags to resources, resource groups, or subscriptions. Common uses include cost center allocation, environment identification (dev/test/prod), and owner tracking. Tags are not inherited by default.

Azure Service Level Agreements (SLAs)

Microsoft's formal commitment defining performance standards and uptime guarantees for Azure services. Most services offer 99.9% to 99.99% availability. Composite SLA for multi-service architectures is calculated by multiplying individual SLAs. Service credits are provided when SLAs are not met. Free services have no SLA.

Azure Advisor

Personalized cloud consultant providing recommendations to optimize Azure deployments. Analyzes configurations and usage to provide actionable suggestions across five categories: Reliability, Security, Performance, Cost, and Operational Excellence. Recommendations are prioritized by impact and include estimated savings.

Azure Monitor

Comprehensive monitoring solution for collecting, analyzing, and responding to telemetry from Azure and on-premises environments. Components include Metrics (numerical data), Logs (Log Analytics queries), Alerts (notifications and automated actions), and Application Insights (application performance monitoring). Enables proactive issue identification.

Frequently Asked Questions

What is the AZ-900 pass rate?

The AZ-900 pass rate is estimated at 80-85%, making it one of the more accessible IT certifications. You need a score of 700 out of 1000 to pass. The exam has 40-60 questions to complete in 65 minutes. As a fundamentals-level exam, it tests conceptual understanding rather than hands-on skills. Most candidates who complete Microsoft Learn modules pass on their first attempt.

Is AZ-900 good for beginners?

Yes, AZ-900 is specifically designed for beginners with no prior Azure or cloud experience. It covers cloud computing concepts, basic Azure services, pricing models, and security/compliance fundamentals at a conceptual level. No coding or technical prerequisites are required. It's ideal for business users, sales professionals, and IT beginners looking to understand cloud technology. The certification never expires.

What topics are covered on AZ-900?

AZ-900 covers four domains: Describe Cloud Concepts (25-30% - IaaS/PaaS/SaaS, shared responsibility, benefits of cloud), Describe Azure Architecture and Services (35-40% - compute, networking, storage services), Describe Azure Management and Governance (30-35% - cost management, governance tools, monitoring). The 2024 update added AI and sustainability content.

How long should I study for AZ-900?

Most candidates need 10-20 hours of study time over 1-2 weeks. Microsoft Learn's free AZ-900 learning path takes approximately 10 hours to complete. If you have no cloud experience, budget 20-30 hours. The exam tests conceptual knowledge, so focus on understanding Azure services and their use cases rather than memorizing technical details. Practice tests are highly recommended to familiarize yourself with question formats.

Is AZ-900 worth it in 2026?

Yes, AZ-900 remains valuable as an entry point to Azure certifications. Benefits include: 1) Validates cloud fundamentals knowledge to employers, 2) Foundation for advanced Azure certs (AZ-104, AZ-204, etc.), 3) 95% of Fortune 500 companies use Azure, 4) Never expires, 5) Low cost ($99) and high pass rate. It's particularly valuable for career changers entering IT or business professionals working with Azure teams.

What's the difference between AZ-900 and AWS Cloud Practitioner?

Both are entry-level cloud certifications. AZ-900 (Azure) costs $99, has 40-60 questions in 65 minutes, and scores 700/1000 to pass. AWS Cloud Practitioner costs $100, has 65 questions in 90 minutes, and scores 700/1000 to pass. Content is similar - cloud concepts, services, pricing, security. Choose based on which cloud platform your target employers use. Many professionals get both to demonstrate multi-cloud knowledge.

Same family resources

Explore More Microsoft Azure Certifications

Continue into nearby exams from the same family. Each card keeps practice questions, study guides, flashcards, videos, and articles in one place.