Here are all the quizzes posted on Twitter and Facebook in June 2019 and their explanation. Quiz 1 1package main 2 3import ( 4 "fmt" 5) 6 7func hello() []string { 8 return nil 9} 10 11func main() { 12 h := hello 13 if h == nil { 14 fmt.Println("nil") 15 } else { 16 fmt.Println("not nil") 17 } 18} Run in playground Options nil not nil compilation error Answer not nil We assign the function hello to the variable h and not the return value of hello() in line no.