logo

Crowdly

Browser

Додати до Chrome

LENGUAJE DE PROGRAMACION

Шукаєте відповіді та рішення тестів для LENGUAJE DE PROGRAMACION? Перегляньте нашу велику колекцію перевірених відповідей для LENGUAJE DE PROGRAMACION в online.upr.edu.

Отримайте миттєвий доступ до точних відповідей та детальних пояснень для питань вашого курсу. Наша платформа, створена спільнотою, допомагає студентам досягати успіху!

Go is a strong and dynamically typed language 

100%
0%
Переглянути це питання

Go is an open-source project developed by a team at Google and many contributors from the open-source community.

100%
0%
Переглянути це питання

The following code in GO produces an error 

package main

import (

"fmt"

)

func main() {

      s:=[]int{1,2,3,4,5}

      for k, v:= range s{ 

          fmt.Println(k,v)

       }

}

100%
0%
Переглянути це питання

Which is the output of the following code in GO 

package main

import  "fmt"

var i  int =10

var J int16 = 20 

func main() {

        i:= 30 

fmt.Printf("%v, %T", i, i)

}

100%
0%
0%
0%
Переглянути це питання

The following code in GO produces an error 

package main

import (

"fmt"

)

func main() {

      s:=[]int{1,2,3,4,5}

      for k, v:= range s{ 

          fmt.Println(v)

       }

}

0%
100%
Переглянути це питання

GO exhibits a slow compilation time compared to languages like C and Java

0%
100%
Переглянути це питання

Which is the output of the following code in GO

package main

import (

"fmt"

)

func main() {

      a:=[4]int{10,12,14,16}

      b:=a

      b[1]=100

      fmt.Println(a)

}

0%
0%
0%
100%
Переглянути це питання

Which is the output of the following code in GO

package main

import (

"fmt"

)

func main() {

      a:=[4]int{10,12,14,16}

      b:= &a

      b[1]=100

      fmt.Println(a)

}

0%
0%
100%
0%
Переглянути це питання

Which is the output of the following code in GO

package main

import (

"fmt"

"sync"

)

var mm = sync.WaitGroup{}

func main() {

        

        canal := make(chan float32)

        mm.Add(2)

        go func() {

            k:= <- canal

            fmt.Printf("%v, %T", k,k)

            mm.Done()

        }()

        go func(){

           canal <- 42.

           mm.Done()

        }()

        

}

0%
0%
100%
0%
Переглянути це питання

The following code in GO produces an error 

package main

import (

"fmt"

)

func main() {

      s:=[]int{1,2,3,4,5}

      for k, _:= range s{ 

          fmt.Println(k)

       }

}

0%
100%
Переглянути це питання

Хочете миттєвий доступ до всіх перевірених відповідей на online.upr.edu?

Отримайте необмежений доступ до відповідей на екзаменаційні питання - встановіть розширення Crowdly зараз!

Browser

Додати до Chrome