A.) := B.) = C.) : D.) ::
A.) Defines a function that runs when a program exits B.) Defers the execution of a function until the surrounding function returns C.) Delays the execution of a Goroutine D.) Defers the declaration of a variable
A.) net/http B.) http/server C.) web/request D.) http/util
A.) To initialize variables with zero values B.) To perform package-level initialization tasks C.) To handle HTTP requests D.) To declare and initialize global constants
A.) List B.) Array C.) Map D.) Slice
A.) goroutine myFunction() B.) go myFunction() C.) thread myFunction() D.) create myFunction()
A.) To create new Goroutines B.) To allocate memory for slices, maps, and channels C.) To declare new variables D.) To start HTTP servers
A.) immutable B.) final C.) const D.) readonly
A.) while B.) for C.) foreach D.) repeat
A.) typedef B.) struct C.) type D.) newtype