Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
IaaS vs PaaS vs SaaS
00:00
5 left

IaaS vs PaaS vs SaaS

MediumPython

Problem

What are the key differences between IaaS, PaaS, and SaaS?

Implement cloud_responsibility_matrix(models) to represent those differences programmatically. The input is a list containing one or more of IaaS, PaaS, and SaaS; return one responsibility record per requested model, preserving input order. Each record must identify the layers managed by the customer and the provider.

Constraints

  • 1 <= len(models) <= 3
  • Each element is exactly one of "IaaS", "PaaS", or "SaaS"
  • The input contains no duplicate service models
  • Return records in the same order as the input

Function Signature

def cloud_responsibility_matrix(models):
Interviewer

Your question is IaaS vs PaaS vs SaaS. Start with the requirements in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.