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