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
Answer and explanation
Correct Answer: A — True
A case statement is basically the multiple if-elsif-else statements.
