Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Programming Fundamentals Check

EasyPython00:00
Practice interviewer
In session
5 left
00:00

Your question is Programming Fundamentals Check. Start with the requirements on the right.

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.

Problem

What is the difference between PUT and POST?

Asked in the Google HR Screening stage. Implement describe_http_method(method) to encode the core distinction between the two HTTP methods.

Input and Output

The function receives method, either "PUT" or "POST", and returns a dictionary with purpose, idempotent, and target fields.

For PUT, return purpose: "replace", idempotent: true, and target: "specific resource". For POST, return purpose: "create or process", idempotent: false, and target: "resource collection or action".

Constraints

  • method is exactly "PUT" or "POST"
  • Return keys must be purpose, idempotent, and target

Function Signature

def describe_http_method(method):
Your solutionPython 3
You need to log in / sign up to run or submit.
Run your code to see test output