
- Go Tutorial
- Go - Home
- Go - Overview
- Go - Environment Setup
- Go - Program Structure
- Go - Basic Syntax
- Go - Data Types
- Go - Variables
- Go - Constants
- Go - Operators
- Go - Decision Making
- Go - Loops
- Go - Functions
- Go - Scope Rules
- Go - Strings
- Go - Arrays
- Go - Pointers
- Go - Structures
- Go - Slice
- Go - Range
- Go - Maps
- Go - Recursion
- Go - Type Casting
- Go - Interfaces
- Go - Error Handling
- Go Useful Resources
- Go - Questions and Answers
- Go - Quick Guide
- Go - Useful Resources
- Go - Discussion
Go Online Quiz
Following quiz provides Multiple Choice Questions (MCQs) related to Go. You will have to read all the given answers and click over the correct answer. If you are not sure about the answer then you can check the answer using Show Answer button. You can use Next Quiz button to check new set of questions in the quiz.

Answer : B
Explanation
No support for method overloading.
Q 2 - Which of the following is a derived type in Go?
Answer : D
Explanation
All of the above are derived types.
Q 3 - Which of the following is true about expression switch statement in Go?
Answer : D
Explanation
All of the above options are correct.
Answer : A
Explanation
Functions can be created on the fly and can be used as values.
Answer : A
Explanation
Yes! Go allows you to have pointer on a pointer and so on.
Q 6 - Which of the following is correct about maps in Go?
A - delete() function is used to delete an entry from the map.
B - delete() function requires map and corresponding key which is to be deleted.
Answer : C
Explanation
Both of the above options are correct.
Q 7 - Which of the following transfers control to the labeled statement in Go?
Answer : C
Explanation
goto transfers control to the labeled statement.
Q 8 - Which of the following method is the default method of parameter passing in Go?
Answer : A
Explanation
By default, Go uses call by value to pass arguments.
Answer : A
Explanation
Yes! Go is a case sensitive programming language.
Q 10 - The term rvalue refers to a data value that is stored at some address in memory.
Answer : A
Explanation
The term rvalue refers to a data value that is stored at some address in memory.