-
For what values of the expression is an if-statement block not executed?
-
- 0
- 0, all negative values, all positive values except 1
- 0 and -1
- 0 and all negative values
- None of these
Correct Option: C
The if-statement block is only not executed when the expression evaluates to 0. its just syntactic sugar for a branch-if-zero instruction.