When using the logical AND operator, if the left operand is false, the right operand is _______ evaluated.
- always
- sometimes
- never
- conditionally
In C++, the logical AND (&&) operator employs short-circuit evaluation. If the left operand is false, the right operand isn't evaluated because the overall result will already be false.
Loading...