Which statement about the logical operators & and && is true?
B.
The & and && (AND) operators are not interchangeable.
The conjunctive & operator always evaluates both sides of the expression.
The conditional conjunctive && operator only evaluates the right-hand side of the expression if the left side is determined to be true.
This is why conditional operators are often referred to as short-circuit operators, skipping the right-hand side expression at runtime.
For these reasons, Option B is the correct answer.
Note that Option C is an incorrect statement as well, since it describes disjunctive (OR) operators.