Which statement about case statements of a switch statement is not true?
B.
A case value must be a constant expression, such as a literal or final variable, so Options A and C are true statements about case values.
A case statement may be terminated by a break statement, but it is not required, making Option B the false statement and correct answer. Option D is also a true statement about case values.