About 14,900 results
Open links in new tab
  1. What Is a Boolean? - Computer Hope

    Jun 1, 2025 · In computer science, a boolean or bool is a data type with two possible values: true or false. It is named after the …

  2. Boolean data type - Wikipedia

    In computer science, the Boolean is a data type that has one of two possible values representing the two truth values of logic: true …

  3. Boolean - Wikipedia

    Look up Boolean, Booleans, or boolean in Wiktionary, the free dictionary. Any kind of logic, function, expression, or theory based on …

  4. What Boolean Logic Is & How It’s Used In Programming

    Mar 21, 2022 · Boolean logic is a type of algebra in which results are calculated as either TRUE or FALSE (known as truth values or …

  5. Python Booleans - W3Schools

    Booleans represent one of two values: True or False. In programming you often need to know if an expression is True or False. You …

  6. BOOLEAN Definition & Meaning - Merriam-Webster

    Jul 2, 2026 · The meaning of BOOLEAN is of, relating to, or being a logical combinatorial system (such as Boolean algebra) that …

  7. JavaScript Booleans - W3Schools

    Boolean values are fundamental for logical operations and control flow in JavaScript programming. All JavaScript comparison …

  8. Booleans - Python for AI Beginner Course

    Booleans are the simplest data type - they can only be True or False. Think of them as yes/no answers. ... Boolean values are True …

  9. 2.2. Booleans — Introduction to Data Science

    Booleans are a data type with only two possible values: True or False. Because they have two outcomes, we also call them binary. …

  10. C++ Booleans - GeeksforGeeks

    Oct 14, 2025 · Boolean (bool) is a data type that can store only two values: true or false. It is used to represent logical conditions or …