ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
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
A case statement is basically the multiple if-elsif-else statements.