The '_____' operator in Go is used to shift bits to the right.
- <<
- <<<
- >>
- >>>
The correct operator to shift bits to the right in Go is the right shift operator ('>>'). This operator shifts the bits of the left operand to the right by the number of positions specified by the right operand.
Loading...
Related Quiz
- Go templates support _______ control structures like if, else, range, and with.
- Implementing _______ can help in managing the execution flow of middleware and request handlers in a Go web application.
- To ensure a map is safe to use concurrently from multiple goroutines, you would typically use a _____.
- The purpose of the "_______" library in Go testing is to provide additional assertion functions and utilities.
- In a Go program, you're tasked with implementing a logging system that can log messages to multiple destinations like files, databases, and the console. Which Go feature would you use to achieve this flexibility?