Do you know the git stash command and what it does?
QA / QA Automation
Name a few list methods in Python.
What backend technologies have you worked with? Was automation used?
What are getters and setters?
Write a function that prints the string <Name> at an interview at <company>, by default, assume the company is Ozon, but you can create your own company.
Name a few list methods in Python that come to mind immediately.
Is it possible to iterate over a string in Python?
What is a lambda function?
Name mutable and immutable data types in Python
There is a handler for rendering the last order in the customer's personal account. Below is the response structure from swagger. What 3 business scenarios would you check first? Request: GET /client/last_order?client_id={client_id} Response: { "client_id": "integer", "order_id": "integer", "order": [ { "item_id": "integer", "item_qty": "integer", "item_price": "number" } ], "order_price": "number" }
What data type can be a key in a dictionary?
Calculate the squares of numbers from 0 to 9 in one line.
D = {'a': 1, 'b': 2, 'c': 3, 'd': 4, 'e': 5} L = sorted([D[s] for s in D])
Imagine that the variables return upon call: list1, list2, list3.
What is the difference between git pull and git fetch?
What is git rebase?
Is it necessary to write 'self' in class methods?
Name mutable and immutable data types in Python.
Tell me about your experience developing a framework from scratch: architecture, patterns, tools
How is encapsulation implemented in Python? Tell about access modifiers.