What is a 404 and what other 4xx codes do you know?
Golang
Is the backend of a mobile application mainly BFF?
How to indicate in Go that a structure implements a certain interface?
Have you had conflicts with colleagues or situations where you have your opinion, and a colleague has another?
What is SOLID? Decode the principles.
What takes precedence — business interests or user interests? Was there an example in practice where a choice had to be made?
How did tasks come to you for work?
How have you used indices in your work?
What happens to a send operation on an unbuffered channel ch := make(chan int) when one goroutine executes ch <- 1, but there is no active receiver in the program? The channel automatically expands its buffer and the receive occurs asynchronously The goroutine will block until a receiver appears The value will be discarded without an error The send will cause a panic
Did you discuss development? Was there a development plan?
Can you give an example of a task with high uncertainty that you had to perform?
Which redirection operator in Linux appends the command output to the end of a file without overwriting its current content? tee > > << >>
What are you currently looking for, and in which direction do you want to develop?
How were tasks distributed within the team?
What is a file descriptor?
Implement a function that takes a slice of integers and returns the length of the longest consecutive sequence of identical numbers. A sequence is considered consecutive if the elements go in a row in the original slice.
If you had two versions of a chat, how would you determine which one is better?.
What are interfaces and how do they differ from classes?
What parts does an HTTP request consist of?
How was the team at your last workplace organized, how many people, and what specific position did you hold?