Definition
1. In computer science, the Boolean data type is a data type, having two values (usually denoted true and false), intended to represent the truth values of logic and Boolean algebra. It is named after George Boole, who first defined an algebraic system of logic in the mid 19th century. The Boolean data type is primarily associated with conditional statements, which allow different actions and change control flow depending on whether a programmer-specified Boolean condition evaluates to true or false. It is a special case of a more general logical data type; logic need not always be Boolean.
2. Developed by the English mathematician and computer pioneer George Boole, a Boolean, bool, or Boolean expression is a value that is either TRUE or FALSE.
Abbreviation
Synonyms
bool, boolean expression
Superterms
Data type
Subterms
Sources
https://en.wikipedia.org/wiki/Boolean_data_type (1.); https://www.computerhope.com/jargon/b/boolean.htm (2.)
Author: Tim Röder