What is the result of the expression (true && false)?
true
false
null
undefined
Correct: B
The logical AND operator (&&) returns true only if both operands are true. In this case, one operand (false) is false, so the result of the expression is also false.