Which operator is used to access fields in a struct in Go?
Which of the following is a slice in Go?
Which keyword is used to define a function in Go?
Which data type is used to store whole numbers in Go?
Which data type is used to store decimal numbers in Go?
What is the value of x after the following code is executed: x := 5; x += 3; ?
What is the output of the following code: fmt.Println("Hello, " + "world!")
What is the syntax for declaring a variable in Go?
Which of the following is a valid function signature in Go?
What is the output of the following code: fmt.Println(true && false)