0
0
Intro to Computingfundamentals~10 mins

Popular cloud providers (AWS, Azure, GCP) in Intro to Computing - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to print the name of the cloud provider that starts with 'A'.

Intro to Computing
cloud_provider = '[1]'
print(cloud_provider)
Drag options to blanks, or click blank then click option'
AAzure
BGCP
CAWS
DIBM Cloud
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing AWS instead of Azure
Choosing GCP which starts with 'G'
2fill in blank
medium

Complete the code to assign the abbreviation for Google Cloud Platform.

Intro to Computing
cloud_abbr = '[1]'
print(cloud_abbr)
Drag options to blanks, or click blank then click option'
AAZR
BAWS
CGCP
DGC
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'GC' which is incomplete
Using 'AZR' which is for Azure
3fill in blank
hard

Fix the error in the code to correctly print the cloud provider name stored in the variable.

Intro to Computing
provider = 'AWS'
print([1])
Drag options to blanks, or click blank then click option'
Aprovider
Bcloud_provider
C'provider'
DProvider
Attempts:
3 left
💡 Hint
Common Mistakes
Using quotes around the variable name
Using a different variable name
4fill in blank
hard

Fill both blanks to create a list of popular cloud providers and print the second one.

Intro to Computing
clouds = [[1], [2]]
print(clouds[1])
Drag options to blanks, or click blank then click option'
A'AWS'
B'Azure'
C'GCP'
D'DigitalOcean'
Attempts:
3 left
💡 Hint
Common Mistakes
Using incorrect quotes or missing commas
Choosing the wrong providers
5fill in blank
hard

Fill all three blanks to create a dictionary mapping cloud providers to their abbreviations and print the abbreviation for Azure.

Intro to Computing
cloud_dict = [1]: [2], [3]: 'GCP'}
print(cloud_dict['Azure'])
Drag options to blanks, or click blank then click option'
A'AWS'
B'Azure'
Attempts:
3 left
💡 Hint
Common Mistakes
Not using quotes around keys or values
Mixing keys and values