1.
How many looping constructs are there in 'go' programming language?
2.
Which of the following cloud platforms supports the Go Cloud?
3.
Which of the following is not a valid identifier in Go?
4.
Which of the following symbols is used to represent a pointer in Go?
5.

Is variable name iCount same as icount in 'go' programming?

 

I:  Yes, since both iCount and icount are same as go is not a case-sensitive programming language.

 

II: No, since both iCount and icount are different as go is case-sensitive programming language.

6.
Which of the following acts as a constant in Go?
7.
Which of the following language operators is used to return the address of a variable in Go?
8.
In Go, which of the following libraries is used to manipulate strings?
9.

In Go, which of the following methods is used to pass the arguments in a function:

 

  1. Call by Value

  2. Call by Function

  3. Call by Reference


  4.  
10.

Which of the following decision-making statements is available in the Go programming language:

 

  1. Switch

  2. Select

  3. Nested if


  4.