What does the NOT operator do in this Java code?
boolean isRaining = true; boolean canGoOut = !isRaining;
canGoOut is false
Syntax error in using the NOT operator
canGoOut is true
The NOT operator has no effect