Question:What will the expression 5 > 2 && 3 > 1 evaluate to?
A true B false C null D error
+ AnswerA
+ ExplanationBoth conditions are true, so the logical AND returns true.
+ Report