Go is dynamically typed - TRUE or FALSE
Go is statically typed language, it means we need to provide the type of the variables before its use.
What are unsigned integers?
Integers which contains only zero and positive integers.
Unsigned integer types in Go?
uint8
uint16
uint32
uint64
Signed integer types in Go?
int8
int16
int32
int64
Floating types in Go?
float32
float64
Complex types in Go?
complex64
complex128
How strings are represented in Go?
2. By back-ticks - ``
Which string syntax should we use for preserving white spaces?
Backticks - ``
Function to find length of the string?
len(“string”)
How to concatenate multiple strings?
Using “+” symbol
Boolean type in Go-lang
true
false