Sometimes comparisons are not as simple as a single comparison. More complex conditions are known as Compound Conditions.
Print this page and complete the following.
Are the following conditionals true or false?
And is used to represent the logical anding of two conditions.
True and True = __________________
True and False = __________________
False and True = __________________
False and False = __________________
Or is used to represent the logical or.
True or True = __________________
True or False = __________________
False or True = __________________
False or False = __________________
Not is used to negate the value of an expression.
Not True = __________________
Not False = __________________
Are the following conditionals true or false?
1=1 And 2=2 __________________
2<2 And 1=1 __________________
1<=2 Or 2>5 __________________
1=2 Or 2=5 __________________
Not (1=1) __________________
Not ("A" = "a")__________________