Sobes.tech

Have you ever used half-stub connections in your projects?

Junior — Middle
199

What happens if you call blocking code inside an async function? What will happen to the event loop?

Senior
199

What is a key attribute required for declaring a class in a new program?

Junior — Middle
199

What can cause memory leaks if there is a garbage collector?

199

What is the correct way to issue banknotes — why should they be issued in the largest denominations possible?

199

How was the code review process organized in your previous project?

Junior — Middle
199

How are methods resolved in Python with multiple inheritance (MRO)?

Middle
199

Are you ready to work from the office and what are your requirements for the work schedule?

199

In which cases should asynchronous programming be used to solve problems?

Junior — Middle
199

In which cases would you prefer Django, and in which FastAPI, and how to divide responsibilities?

Middle
199

# 3. Write a simple decorator that measures the execution time of a function # 4. Given: two tables # CREATE TABLE departments ( # id SERIAL PRIMARY KEY, # name VARCHAR(100) NOT NULL # ); # CREATE TABLE employees ( # id SERIAL PRIMARY KEY, # name VARCHAR(100) NOT NULL, # department_id INT NOT NULL REFERENCES departments(id), # salary NUMERIC(10,2) NOT NULL # ); Task: # Write a query that outputs department names and their average salary, but only for departments where the average salary is higher # than the average salary across all employees in the company. Sort the result by descending average salary.

199

How is the analysis and evaluation of task complexity performed when interviewing a developer candidate?

Junior — Middle
199

What are the differences between hash table data structure and B-tree?

Junior — Middle
199

Can you explain the concept of aggregation in object-oriented programming?

Junior — Middle
199

What are the main principles to consider when forming a team for a project with a full lifecycle?

Middle — Middle+
199

Which library is used to implement the mechanism of launching and waiting for data transfer?

Junior — Middle
199
/559