0
0
GCPcloud~10 mins

Cloud service models (IaaS, PaaS, SaaS) in GCP - Interactive Code Practice

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

Complete the code to identify the cloud service model that provides virtual machines and storage.

GCP
service_model = "[1]"  # This model offers virtual machines and storage
Drag options to blanks, or click blank then click option'
AFaaS
BPaaS
CSaaS
DIaaS
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing PaaS or SaaS which provide higher-level services.
2fill in blank
medium

Complete the code to select the cloud service model that provides a platform for developers to build applications without managing infrastructure.

GCP
service_model = "[1]"  # This model offers development tools and runtime environment
Drag options to blanks, or click blank then click option'
ASaaS
BIaaS
CPaaS
DDaaS
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing with IaaS which requires managing virtual machines.
3fill in blank
hard

Fix the error in the code to correctly assign the cloud service model that delivers software applications over the internet.

GCP
service_model = "[1]"  # This model delivers ready-to-use software
Drag options to blanks, or click blank then click option'
ASaaS
BIaaS
CPaaS
DCaaS
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing IaaS or PaaS which require more user management.
4fill in blank
hard

Fill both blanks to complete the sentence describing cloud service models.

GCP
In [1], users manage [2], while in SaaS, users only use the software.
Drag options to blanks, or click blank then click option'
AIaaS
Bvirtual machines
Cdatabases
DPaaS
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing PaaS with IaaS or confusing managed components.
5fill in blank
hard

Fill all three blanks to complete the dictionary describing cloud service models and their main features.

GCP
cloud_models = {"[1]": "virtual machines", "[2]": "development platform", "[3]": "software applications"}
Drag options to blanks, or click blank then click option'
AIaaS
BPaaS
CSaaS
DFaaS
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing the order or mixing up the models.