Which of the following is correct about structures in Go?
Structure is another user defined data type available in Go programming, which allows you to combine data items of different kinds.
All of the above
Structures are used to represent a record
To define a structure, you must use type and struct statements.