Sobes.tech

// Question 2. What will be displayed on the screen package main import "fmt" func bbb() { defer func(){ if r := recover(); r != nil{ fmt.Println("Panic handled 1 ", r) } }() panic("aaaa") } func main() { defer func(){ if r := recover(); r != nil{ fmt.Println("Panic handled 2 ", r) } }() bbb() }

150

There is a parking lot at the shopping center — cars enter and exit, and at the end of the parking session, payment needs to be collected. How do you see this — design a system.

148

Tell me about concurrent processing — you have a separate point about this. How was parallelism limited? How many connections to PostgreSQL were there?

132
/11