Which statement about ternary expressions is true?
C.
Option A is incorrect as only one of the two right-hand expressions is evaluated at runtime.
Parentheses are helpful for reading ternary expressions but are not required, making Option B incorrect.
Option C is a correct statement about ternary operators as they are commonly used to replace short if-then-else statements.
Option D is incorrect as only boolean expressions are permitted in the left-most operand of a ternary expression.