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