Anonymous Quiz
29%
strings.toUpper()
54%
strings.ToUpper()
10%
strings.uppercase()
6%
strings.capitalize()
Anonymous Quiz
4%
cast(x, int)
75%
int(x)
11%
convert(x, int)
11%
x.toInt()
Anonymous Quiz
15%
Используя функцию `panic()`
78%
Используя функцию `recover()` в отложенном вызове
4%
Используя функцию `handle()`
4%
Используя ключевое слово `try`
Anonymous Quiz
84%
make(chan int)
7%
new(chan int)
7%
chan int{}
2%
create(chan int)
Anonymous Quiz
92%
string
2%
text
2%
str
4%
char[]
😁3👀3👍1
Anonymous Quiz
8%
routine
1%
thread
0%
thread
91%
go
Anonymous Quiz
9%
http
88%
net/http
2%
web
1%
net/web
Anonymous Quiz
12%
fmt.Read()
71%
fmt.Scan()
13%
io.Read()
5%
os.Read()
Anonymous Quiz
8%
array int[5]
3%
int[5] array
63%
var arr [5]int
26%
arr := [5]int
Anonymous Quiz
84%
interface
1%
implements
9%
type
6%
struct
🤔4
Anonymous Quiz
39%
panic()
4%
catch()
54%
recover()
2%
handle()
❤1
Anonymous Quiz
35%
[]type
3%
type{}
49%
[]type{}
12%
slice type[]
🤔1
Anonymous Quiz
22%
json
77%
encoding/json
1%
fmt
0%
strings
Anonymous Quiz
57%
params
22%
varargs
16%
variadic
5%
ellipsis
🤯1
Anonymous Quiz
36%
type Reader interface { Read() }
9%
interface Reader { function Read(); }
47%
type Reader interface { Read() string }
7%
interface { Read() string }
Anonymous Quiz
87%
type Person struct { Name string } func (p Person) DisplayName() { fmt.Println(p.Name) }
6%
struct Person { Name string; function DisplayName() { print(Name) } }
5%
type Person { Name string; DisplayName() { fmt.Print(Name) } }
2%
class Person { Name string; void DisplayName() { fmt.Println(Name) } }
Anonymous Quiz
14%
async func()
82%
go func()
3%
func go()
0%
run func()
👍1
Anonymous Quiz
64%
len(slice) == 0
12%
slice == nil
4%
empty(slice)
21%
slice.isEmpty()
Anonymous Quiz
7%
Writer
90%
Reader
1%
Closer
2%
Seeker
😁2
Anonymous Quiz
91%
const
7%
var
1%
let
1%
immut