
- 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
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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 operator increases integer value by one in Go?
Answer : A
Explanation
++ − Increments operator increases integer value by one.
Q 4 - Which of the following is true about call by reference method of parameter passing in Go?
A - This method copies the address of an argument into the formal parameter.
B - Inside the function, the address is used to access the actual argument used in the call.
Answer : D
Explanation
All of the above options are correct.
Q 5 - Which of the following is true about formal parameters in Go?
A - Function parameters, formal parameters, are treated as local variables with-in that function.
Answer : C
Explanation
Both of the above options are correct.
Q 6 - Which of the following function can be used to copy a slice to another slice in Go?
Answer : B
Explanation
Using copy() function, contents of a source slice are copied to destination slice.
Q 7 - Which of the following causes the loop to skip the remainder of its body and immediately retest its condition prior to reiterating in Go?
Answer : B
Explanation
continue causes the loop to skip the remainder of its body and immediately retest its condition prior to reiterating.
Q 8 - In Go programming language, Programs are constructed using packages, for efficient management of dependencies?
Answer : B
Explanation
Programs are constructed using packages, for efficient management of dependencies.
Answer : B
Explanation
Yes! Pointer types are derived types.
Q 10 - Expressions that refer to a memory location is called "rvalue" expression.
Answer : A
Explanation
Expressions that refer to a memory location is called "lvalue" expression.