1.
A case statement compares the expression specified by case and that specified by when using the === operator and executes the code of the when clause that matches.
A
True
B
False
2 practice sets · Page 1 of 1
A case statement compares the expression specified by case and that specified by when using the === operator and executes the code of the when clause that matches.
True
False
The expression specified by the when clause is evaluated as the left operand. If no when clauses match, case executes the code of the else clause.
True
False