Sobes.tech

Tech Support / L1-L3

How interested are you in the team's domain area? What are you looking for more? This is not a standard product development, but a platform for internal teams.

Principal
167

Tell us about your experience with monitoring tools: Zabbix, Prometheus, Grafana.

166

Ping is just a network interface check. What else needs to be checked?

Middle
165

How to fight race conditions?

Principal
162

Why did you decide to leave your previous job?

Junior
160

How were access rights to file resources distributed? What types of AD groups exist and how do they differ?

Middle
158

Tell about your experience with Git. List the basic commands for creating a commit to a remote repository.

158

Network problem diagnosis: uploading 20 GB over a 3 Gbps channel takes 6 hours. Where is the bottleneck and what tools can be used for diagnosis?

156

How is interaction with adjacent teams (development, infrastructure) organized?

155

What is a hash table?

Principal
143

/** * Repeating characters * * Write a function that takes a string as input and returns * for each unique character the maximum number of its consecutive repetitions. * * Input: aaffbaaaaffc * Output: a:4 b:1 f:2 c:1 * * Input: bbbbbb * Output: b:6 * * Input: abc * Output: a:1 b:1 c:1 * * Input: aabbcc * Output: a:2 b:2 c:2 * * Input: aaabbbccc * Output: a:3 b:3 c:3 * * Input: a * Output: a:1 * * Input: "" * Output: */

Principal
141
/8