Evaluate the below conditional expressions in a step-by-step manner as shown in the examples when x = 1 and y = 2.
Note: In the solutions below, indicate the current logical expression being evaluated according to the rules of precedence.
NOT (x = 3) AND NOT (x = 4) AND NOT (x — 5) Evaluates as True
Assign Values NOT (1 = 3) AND NOT (1 = 4) AND NOT (1= 5)
Add Parentheses No more needed
Do Arithmetic None needed
Evaluate Relational Exp. NOT (F) AND NOT (F) AND NOT (F)
Evaluate Logical Exp.
Left AND T AND T AND T = T AND T
Other AND T AND T =T
Get Result True
Computer Science & Information Technology