Sobes.tech

QA / QA Automation

What backend technologies have you worked with? Was automation used?

285

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.

274

Name a few list methods in Python that come to mind immediately.

245

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" }

221

Calculate the squares of numbers from 0 to 9 in one line.

209

D = {'a': 1, 'b': 2, 'c': 3, 'd': 4, 'e': 5} L = sorted([D[s] for s in D])

207

Imagine that the variables return upon call: list1, list2, list3.

196

Tell me about your experience developing a framework from scratch: architecture, patterns, tools

173

How is encapsulation implemented in Python? Tell about access modifiers.

170
/2