Tutorial Study Image

Golang Online Quiz

Following quiz provides Multiple Choice Questions (MCQs) related to Golang . 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.


Q 1 - Select the correct option about GO programming " GOlang supports pointer arithmetics"

Show Answer
 Answer is : Option B

Q 2 - In GO programming, which keyword is used to skip the loop part and start the loop again

Show Answer
 Answer is : Option D

Q 3 - In GO programming, how can we increase the capacity of a slice

Show Answer
 Answer is : Option A

Q 4 - In GO programming is it preferred to use the global variables inside a program

Show Answer
 Answer is : Option B

Q 5 - In GOlang, in which method the change of a parameter in a function will reflect the change in argument

Show Answer
 Answer is : Option C

Q 6 - Select the true statement about Go programming?

Show Answer
 Answer is : Option D

Q 7 - In GO programming, can we declare multiple variable types in a single declaration

Show Answer
 Answer is : Option A

Q 8 - Select the correct output for the following GOlang code snippet package main import ("learn") func main() { x := 3 y := &x learn.Print(*y) *y = 4 learn.Println(x) }

Show Answer
 Answer is : Option C

Q 9 - Select the correct statement about interfaces in GOlang

Show Answer
 Answer is : Option A

Q 10 - In GOlang what is the name of the process of taking an interface value and extracting a specified type value from it

Show Answer
 Answer is : Option C