Can a function in Go return multiple values?
Which symbol is used to get the address of a variable in Go?
What is the output of the following code: fmt.Println(5 % 2)
Which function is used to create a new error with a specified message?
What is the name of the built-in Go interface that defines an error type?
Which of the following is a valid pointer declaration in Go?
What is the purpose of the panic function in Go?
What is the correct way to allocate memory for a struct using a pointer in Go?
What is a variadic function in Go?
What is a closure in Go?