Skip to main content

Challenge 01: What is Cloud Computing?

Estimated Time

20-30 min | Cost: Free | Domain: Cloud Concepts (25-30%)

Exam skills covered

  • Define cloud computing
  • Describe the shared responsibility model
  • Define cloud models (public, private, hybrid)
  • Identify appropriate use cases for each cloud model

Overview

Cloud computing is the delivery of computing services — servers, storage, databases, networking, software — over the internet ("the cloud"). Instead of buying and maintaining physical hardware, you rent resources from a cloud provider like Microsoft Azure.

Think of it like electricity: you don't build a power plant to turn on a light. You plug into the grid and pay for what you use. Cloud computing works the same way — you access computing power on demand and pay only for what you consume.

The shared responsibility model defines who is responsible for what. The cloud provider always manages the physical infrastructure (hardware, network, datacenter). What YOU manage depends on the service type (IaaS, PaaS, or SaaS).

Explore

Task 1: Understand cloud models

There are three cloud deployment models. Review the differences:

ModelDescriptionExample
Public cloudResources owned by cloud provider, shared across customersAzure, AWS, Google Cloud
Private cloudResources dedicated to a single organizationAzure Stack, on-premises datacenter
Hybrid cloudCombination of public and private cloudsOn-prem AD + Microsoft Entra ID

Your task: Think about your current or previous organization. Which cloud model would fit best? Why?

Task 2: Explore the shared responsibility model

Navigate to: Microsoft's shared responsibility documentation

Review this table:

ResponsibilityOn-premisesIaaSPaaSSaaS
Data & accessYouYouYouYou
ApplicationsYouYouSharedProvider
Network controlsYouYouSharedProvider
Operating systemYouYouProviderProvider
Physical infrastructureYouProviderProviderProvider

Key insight: YOU are always responsible for your data, accounts, and access management — regardless of cloud model.

Task 3: Visit the Azure Portal

  1. Open portal.azure.com
  2. Look at the top search bar — this is how you find any Azure service
  3. Click All services in the left menu
  4. Browse the categories: Compute, Networking, Storage, Databases, etc.
  5. Notice how many services exist — Azure offers 200+ services across these categories

Task 4: Explore Azure's global presence

  1. Visit azure.microsoft.com/explore/global-infrastructure
  2. Notice the number of regions worldwide
  3. This is the "cloud" — massive datacenters distributed globally
Azure CLI Alternative
# List all Azure regions
az account list-locations --output table

# Show your current subscription
az account show --output table

Key Concepts

ConceptDefinition
Cloud computingOn-demand delivery of IT resources via the internet with pay-as-you-go pricing
Public cloudMulti-tenant environment managed by a cloud provider
Private cloudSingle-tenant environment, can be on-premises or hosted
Hybrid cloudCombines public and private clouds, allowing data/apps to move between them
Shared responsibilitySecurity/management duties split between provider and customer
Multi-cloudUsing services from multiple cloud providers

Knowledge Check

1. Which cloud model makes resources available to multiple organizations over the public internet?

2. In the shared responsibility model, who is ALWAYS responsible for the data stored in the cloud?

3. A company wants to keep sensitive data on-premises but use Azure for additional compute capacity during peak periods. Which cloud model describes this approach?

4. In a public cloud model, who is responsible for maintaining the physical hardware?

5. Which of the following is a characteristic of cloud computing?

Learn More