Sobes.tech

What tools and methods should be used to deploy a Python project on the internet?

Junior — Middle
113

What is the difference between the operators == and is in Python?

Middle+
Группа «Самолет»
113

What difficulties can arise when using serialization within transactional processes?

Junior — Middle
СБЕРСБЕР
113

Why can GIN indexes grow?

Senior
АВ Софт
113

What frameworks for configuring the workflow of service interaction with a language model do you know?

Senior
ГРЧЦ, ФГУП
113

In what cases is multithreading used in programming?

Junior — Middle
Рексофт
113

Were there DevOps engineers: they set up monitoring, and you added metrics, or did you have to set up the tools yourself?

Middle+
Бета-Тест
113

What indexes in PostgreSQL do you know besides B-tree?

Middle
Сбер.clouds
113

What are the differences between TCP and UDP, and at what level do they operate?

Middle+
АВ Софт
113

Can you explain what is meant by a transaction in PostgreSQL and how it works?

Junior — Middle
113

How does task switching occur in coroutines when using asyncio?

Junior — Middle
СБЕР Центр ИИСБЕР Центр ИИ
113

Can the principle of single responsibility be considered part of encapsulation in object-oriented programming?

Junior — Middle
113

How is message exchange implemented via broker in Redis?

Middle
Леста
113

```python from collections import Counter def min_s(a: str, s: str) -> str: need = set(a) window = Counter() res = "" c = 0 left = 0 best_len = float('inf') for right, char in enumerate(s): if char in need: window[char] += 1 if window[char] == 1: c += 1 while c == len(need): if right - left + 1 < best_len: res = s[left:right + 1] best_len = right - left + 1 if s[left] in need: window[s[left]] -= 1 if window[s[left]] == 0: c -= 1 left += 1 return res ```

Intern
Яндекс
113

What does the process from commit to deployment on the stands look like?

Middle+
СБЕРСБЕР
113

Can you explain the concept of hexagonal architecture and its main principles?

Junior — Middle
113

How can you compare two objects represented in the form of an edge?

Junior — Middle
113

Does Sentry process system response time information?

Junior — Middle
113

What is the difference between list, tuple, and set?

Middle+
cleverbots
113

What questions would you like to ask about the company during the interview?

Intern — Junior
КодтехКодтех
WildberriesWildberries
МТСМТС
+8
113
/547