Evaluate the conditional expressions in a step-by-step manner as shown in the examples when x = 1 and y = 2.
x<3 ANDx>OANDy>=1 Evaluates as True
Assign Values 1 <3 AND 1 > 0 AND 2 > = 1
Add Parentheses (1 < 3) AND (1 > 0) AND (2 > = 1)
Do Arithmetic None needed
Evaluate Relational Exp. (T AND T) AND T
Evaluate Logical Exp.
Left AND first T AND T AND T = T AND T
Other AND T AND T =T
Get Result True
Computer Science & Information Technology