5 questions0m 0s
Learn the skill
A Boolean value is true or false. AND is true only when both inputs are true. OR is inclusive: at least one input true is enough, including both. NOT reverses a Boolean value. Parentheses make grouping explicit.
Worked example
For a = true and b = false, a AND b is false, a OR b is true, and NOT b is true. In this worksheet inputs are already Booleans; no automatic type conversion is assumed.