Sobes.tech

Tech Support / L1-L3

What types of non-relational databases exist and for what tasks are they used? How do they differ from relational databases?

Principal
176

What are indexes in databases and what are they for? How do they work?

175

Which entity in Kubernetes is responsible for the availability of the service outside?

171

How to fight race conditions?

Principal
167

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

167

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

Middle
159

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?

156

What is a hash table?

Principal
146

/** * 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
143
/8