Sobes.tech

// Question 1. What will be displayed on the screen? package main import "fmt" func main() { s := "Hello world" s[0] = "h" if err != nil { fmt.Println("Error", err) } fmt.Println(s) }

204

There is user sharding by ID. The service receives a request to update a user's password — what happens next at the service level?

201

// Question 1. What will be displayed on the screen? package main import "fmt" func main() { s := "Hello world" s[0] = "h" fmt.Println(s) }

199

Is it normal to use the same endpoint for adding friends and viewing friends, but with different methods? How will it work?

199

Tell about channels in Go: what they are, what is stored inside, what happens to a buffered channel of 5 elements when 5 values are written?

198

// Question 3. What will be displayed on the screen package main import "fmt" import "math" func main() { i := int32(math.Pow(2, 64)) fmt.Println(i) }

198
/11