Sobes.tech

Can you give an example of implementing the chain of responsibility in a classic RESTful service in Go?

191

What is a race condition and how to avoid it?

191

Who initially designed the search architecture?

190

Stored Procedures and Functions — do they exist in PostgreSQL, MS SQL, Oracle?

190

How is the leader of a partition distributed among brokers? Is it possible to manage the distribution of partitions/leaders yourself?

188

// Дана строка s. Нужно найти длину самой длинной подстроки без повторяющихся символов. // Примеры: // s = "abcabcbb", ответ: 3 ("abc") // s = "cccccccc", ответ: 1 ("c") // s = "pwwkew", ответ: 3 ("wke") // s = "", ответ: 1 ("") // Строка s состоит из английских букв, цифр, символов и пробелов func lengthOfLongestSubstring(s string) int { return 0 }

187

What development practices does your team follow?

187

Design a system for an autonomous parking lot with barriers, cameras, and payment terminals. Describe the services, their interactions, and the database schema.

187

What GitFlow was used? What approaches were taken? Was it GitLab self-hosted or something else?

186

How to work with errors in Go, how to wrap an error?

186

Tell us about yourself and your last project: business meaning, architecture, team, methodology.

186

What is the time and memory complexity of the resulting solution?

185

How did you receive tasks? Where did you track tasks and statuses?

182

During an UPDATE, what happens to Xmin and Xmax?

182

What triggers were used to start the pipeline in CI/CD?

182

How long have you been working at Go, are you working at [company]?

181

Tell how Kafka works: brokers, replication, fault tolerance.

181

How is polymorphism implemented in Go without classical inheritance (duck typing)? Is this compile-time or runtime polymorphism? What other types of polymorphism can be implemented in Go?

180
/10