What is the order of traversal of elements in a map in Go? (fixed by a certain algorithm / arbitrary, determined at compile time / arbitrary, determined at runtime)
Golang
When is a deferred function called? (upon exiting a local block / upon exiting a function / upon application termination)
Which of the following are synchronization tools in Go? (channels, sync.WaitGroup, sync.Mutex, sync.Cond)
Where do you want to develop — in architecture?
Which mechanism exists in Go: inheritance or composition?
What container orchestration systems for Linux do you know? What isolation technologies does Linux provide? What does the /proc directory contain?
Why did you decide to leave your current company?
What happens if you start a goroutine and call panic within it?
How long have you been programming in Go from a professional experience perspective?
What will be the result of writing to a closed channel? (deadlock / panic / operation returns an error)
When are the arguments of deferred functions evaluated?
Tell me more about the tasks you face.
Tell about your latest work experience: company, stack, tasks.
What is the algorithmic complexity of binary search in a sorted array? (O(1) / O(log n) / O(n) / O(n^2))