September 2013
Intermediate to advanced
548 pages
12h 25m
English
There are four possible boolean expressions.
not B1: Logical not
B1 and B2: Logical and
B1 or B2: Logical or
B1 xor B2: Logical xor
In all of these, B1 and B2 must be boolean literals
or expressions that evaluate to booleans. Here are some examples:
| | 1> not true. |
| | false |
| | 2> true and false. |
| | false |
| | 3> true or false. |
| | true |
| | 4> (2 > 1) or (3 > 4). |
| | true |
Read now
Unlock full access