What does "boolean" mean?
In English, What does "boolean" mean?
2 Answers
It's a true or false statement in programming.
Boolean refers to Boolean algebra, a mathematical system originally devised for the analysis of symbolic logic, in which all variables have the value of either zero or one.
It is widely used in digital computers, and as oshinova alluded to, the boolean statement is usually interpreted as true or false, yes or no, on or off, and 1 or 0. Boolean logic usually uses operators such as inequalities, and special signs and evaluates whether the statements being evaluated are true or false under the specified conditions.