About 1,010,000 results
Open links in new tab
  1. Boolean data type - Wikipedia

    In computer science, the Boolean (sometimes shortened to Bool) is a data type that has one of two possible values (usually denoted true and false) which is intended to represent the two …

  2. 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 English mathematician and logician George Boole, whose …

  3. What Is a Boolean Data Type, and What Are Some Uses?

    Apr 25, 2021 · In computer programs, there are three types of data: text, numbers and Booleans. A Boolean data type is a value that can only be either true or false (these are known as …

  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 truth variables). Instead of using arithmetic operators like …

  5. Boolean value Definition - AP Computer Science Principles Key …

    A Boolean value is a data type that can only have two possible values: true or false. It is often used in programming to make decisions and control the flow of a program.

  6. What is Boolean in computing? – TechTarget Definition

    Nov 7, 2022 · In computing, the term Boolean means a result that can only have one of two possible values: true or false. Boolean logic takes two statements or expressions and applies …

  7. Boolean Data Type - GeeksforGeeks

    Nov 4, 2025 · The Boolean data type represents logical values - True (1) or False (0) - and typically occupies 1 byte of memory. Any non-zero value is treated as True, while 0 is False. …

  8. 4.1: Boolean Values - Engineering LibreTexts

    The response is a Boolean value, meaning the value is either true or false. The bool data type, standing for Boolean, represents a binary value of either true or false. true and false are …

    Missing:
    • meaning
    Must include:
  9. Understanding Boolean Data Types - w3resource

    Jan 10, 2025 · What is a Boolean Data Type? The Boolean data type is one of the simplest and most essential concepts in programming. It represents a value that can be either true or false. …

    Missing:
    • meaning
    Must include:
  10. What is Boolean? - Definition from Amazing Algorithms

    In computer science, a Boolean is a data type that has only two possible values: true or false. It is named after George Boole, a 19th-century mathematician who developed a system of logic …