Sobes.tech

How have you worked with Kubernetes? What did you do?

Senior
МВидеоМВидео
29

Have you ever received a task in the format 'here is the goal — here is the result, how to do it — no difference'?

Senior
I-teco
29

How are SOLID principles applicable to the Singleton pattern?

Senior
Займиго
29

Will there be a panic if you append to a nil slice?

Middle
WildberriesWildberries
29

Why did you resign?

Middle
МВидео/эльдорадо
29

Questions to the interviewer about the company and processes.

Senior
Магнит Тех
29

Are you for or against stored procedures?.

Middle+
МВидео/эльдорадо
29

Binary search and search tree traversal have the same logarithmic complexity. Why do we need multiple algorithms with the same algorithmic complexity? Should we always use a tree instead of binary search?

Middle
VKVK
29

Have you used triggers in practice?

Middle+
МВидео/эльдорадо
29

What logging library do you use?

Senior
А7
29

Знакомо ли тебе понятие multi-stage build в Docker?

Middle
АО Медиа Эффект
29

What happens to a slice in Go if its capacity is 8 and we try to add a ninth element?

Senior
plata
29

What is the difference between the EXPLAIN and EXPLAIN ANALYZE commands in PostgreSQL?

Middle+
purrweb
29

package main import "fmt" func main() { a := []int{1,2} a = append(a, 3) b := append(a, 4) c := append(a, 5) fmt.Println(b) fmt.Println(c) }

Middle
ООО Левел Тревел
29

package main func oneStep(yield func() bool) { yield() } func f() { for range oneStep { print("f ") recover() } } func g() { for range 1 { print("g ") recover() } } func checkPanic(loop func(), c chan<- struct{}) { defer func() { println(recover() != nil) c <- struct{}{} }() defer loop() panic(123) } func main() { c := make(chan struct{}, 1) go checkPanic(f, c) <-c go checkPanic(g, c) <-c }

Senior
sber tech
29

Load testing — how was it conducted, what metrics were monitored?

Senior
Cloud.ru
29

What types of automated tests have you used?

Senior
Магнит Тех
29

What is SELECT FOR UPDATE and why is it needed?

Middle+
Magnit Tech
29

[name] asked: what is DDD (Domain-Driven Design)?

Senior
BSS
29

Have you done sharding? What principle did you shard on?

Middle+
РамблерРамблер
29
/404