0
0
Azurecloud~30 mins

Why Azure for cloud computing - See It in Action

Choose your learning style9 modes available
Why Azure for Cloud Computing
📖 Scenario: You are helping a small business understand why they should choose Microsoft Azure for their cloud computing needs. They want to see simple examples of how Azure services can be set up and configured.
🎯 Goal: Build a simple Azure resource setup that shows key reasons to use Azure for cloud computing, including resource creation, configuration, and deployment basics.
📋 What You'll Learn
Create a dictionary called azure_services with these exact entries: 'Compute': 'Virtual Machines', 'Storage': 'Blob Storage', 'Networking': 'Virtual Network'
Create a variable called region and set it to 'East US'
Use a for loop with variables service and feature to iterate over azure_services.items()
Add a final configuration dictionary called deployment_config with keys 'region' and 'services' set to region and azure_services respectively
💡 Why This Matters
🌍 Real World
Businesses use Azure to host applications, store data, and connect networks easily and securely.
💼 Career
Understanding Azure basics helps cloud engineers and IT professionals design and manage cloud infrastructure.
Progress0 / 4 steps
1
Create Azure services dictionary
Create a dictionary called azure_services with these exact entries: 'Compute': 'Virtual Machines', 'Storage': 'Blob Storage', 'Networking': 'Virtual Network'
Azure
Need a hint?

Use curly braces to create a dictionary with the exact keys and values.

2
Set Azure region variable
Create a variable called region and set it to the string 'East US'
Azure
Need a hint?

Assign the string 'East US' to the variable named region.

3
Iterate over Azure services
Use a for loop with variables service and feature to iterate over azure_services.items()
Azure
Need a hint?

Use a for loop with two variables to get keys and values from the dictionary.

4
Create deployment configuration
Add a final configuration dictionary called deployment_config with keys 'region' and 'services' set to the variables region and azure_services respectively
Azure
Need a hint?

Create a dictionary with the exact keys and assign the existing variables as values.