boolean
Boolean (adjective) means relating to a system of logic in which every statement is either true or false, with nothing in between, and statements are combined using operations such as and, or and not. Example: “The filter uses boolean logic, so a record has to satisfy both conditions to appear.”
How to Use Boolean
Learner’s notesIn plain EnglishSomething that can only be true or false, with no middle option.
Standard in mathematics, computing and library search; rare in everyday speech.
Programmers commonly shorten it to bool, said like the word bowl with an oo sound: bool.
Trace the full origin ↓Fill the Gap
Can you complete this real example?
The filter uses _____ logic, so a record has to satisfy both conditions to appear.
Etymology
From the surname of George Boole, the nineteenth-century English mathematician whose work on the algebra of logic the term commemorates, plus the adjectival ending -an.
Synonyms
View more →Related Words
Rhymes for boolean
See all rhymes for boolean →Frequently Asked Questions
Why is boolean capitalised sometimes?
Because it comes from a person's name, George Boole, it is often written Boolean with a capital B, especially in mathematics and formal writing. In programming, where bool and boolean are keywords, the lower-case form is usual.
What is a boolean in programming?
It is a value that can only be true or false. Programs use it for yes-or-no facts, such as whether a user is logged in, and for deciding which branch of code to run next.
What are the boolean operators?
The three basic ones are and, or and not. And is true only when both sides are true, or is true when at least one side is true, and not reverses a value from true to false or the other way round.