Complete the code to identify the cloud service model that provides virtual machines and storage.
service_model = "[1]" # This model offers virtual machines and storage
IaaS stands for Infrastructure as a Service. It provides virtual machines, storage, and networking resources.
Complete the code to select the cloud service model that provides a platform for developers to build applications without managing infrastructure.
service_model = "[1]" # This model offers development tools and runtime environment
PaaS stands for Platform as a Service. It provides tools and environment for developers to build and deploy applications without managing servers.
Fix the error in the code to correctly assign the cloud service model that delivers software applications over the internet.
service_model = "[1]" # This model delivers ready-to-use software
SaaS stands for Software as a Service. It delivers software applications accessible via the internet without installation.
Fill both blanks to complete the sentence describing cloud service models.
In [1], users manage [2], while in SaaS, users only use the software.
In IaaS, users manage virtual machines and other infrastructure. In SaaS, users just use the software without managing infrastructure.
Fill all three blanks to complete the dictionary describing cloud service models and their main features.
cloud_models = {"[1]": "virtual machines", "[2]": "development platform", "[3]": "software applications"}The dictionary maps IaaS to virtual machines, PaaS to development platforms, and SaaS to software applications.