Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyGochannels send and receiveSingle-choice MCQ

What is the result of receiving from a channel that has been closed and fully drained?

ch := make(chan int, 1) ch <- 7 close(ch) a := <-ch b := <-ch