Quiz 5
1. How do you start a new Goroutine?
2. What are 'Channels' used for?
3. Which operator is used to send a value to a channel?
4. By default, are sends and receives on a channel blocking?
5. Which keyword is used to wait on multiple channel operations?
6. How do you close a channel?
7. What is the 'panic' function used for?
8. Which function is used to regain control after a panic?
9. Which command compiles and runs a Go program immediately?
10. Which command creates an executable binary file?
Previous Next