gamicus

A form of logic named for the mathematician George Boole, Boolean values are common in computer programming since computers themselves (namely the bit) are built on an on/off mechanic.

A Boolean value or expression is one that evaluates to either 0 (false) or 1 (true). The Boolean operators are AND, NAND, OR, NOR, NOT, and XOR.

The Boolean operators (all except NOT take two operands):

Boolean logic is the basic foundation of computer algorithms and software.