Sobes.tech

What did you do at your previous job? Tell an interesting case.

Middle+
193

Have you participated in solving algorithmic problems?

Junior — Middle
191

Have you used request rate limiting in FastAPI?

Junior — Middle
190

How did you interact with internal systems and tools in your previous job?

Junior — Middle
189

What is the role of indexes in a database and how do they help speed up query execution?

Junior — Middle
185

Design a service on FastAPI: it receives a trigger on a schedule, processes PDF documents from Kafka (OCR, entity extraction), and saves the text + entities in Postgres. How would you design the structure?

Middle
184

What indices should be applied to the users table based on the written queries?

Middle
183

Name the basic hierarchy of exceptions in Python. Where does it all start?

Middle
183

Could you tell me what you usually do in your work?

Intern — Junior
181

Are you familiar with multi-agent systems?

Middle+
179

How does garbage collection work in Python?

Senior
178

Write functions multiplier and minuser (closures).

Middle
176

Analyze the following Python code that uses threading to increment a counter variable: ```python import threading import time counter = 0 def increment(): global counter for _ in range(100000): current = counter counter = current + 1 thread1 = threading.Thread(target=increment) thread2 = threading.Thread(target=increment) thread1.start() thread2.start() thread1.join() thread2.join() print(f"Итоговое значение счетчика: {counter}") ``` Explain what the expected output is and discuss any potential issues with this code when using threads.

Middle
175

Tell me freely, what have you been doing, and what interesting things from your experience?

Senior
173

How to measure the quality of RAG-system responses if we cannot physically test all use cases and are not experts in the domain?

Senior
172

How to run synchronous blocking code (for example, a 1-second computation) in FastAPI on a route without blocking the EventLoop?

Middle
172

Why do tuples use less memory than lists?

Middle
171
/20