About 1,460,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. Boolean Data Type - GeeksforGeeks

    Jul 23, 2025 · What is Boolean Data Type? The boolean data type is used to store logic values i.e. truth values which are true or false. It takes only 1 byte of space to store logic values. …

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

    Apr 25, 2021 · A Boolean data type is a value that can only be either true or false, represented in binary as 1 and 0 respectively. It’s used in programming to create conditions and control …

  4. Boolean Data Type - Visual Basic | Microsoft Learn

    Aug 29, 2025 · Holds values that can be only True or False. The keywords True and False correspond to the two states of Boolean variables. Use the Boolean Data Type (Visual Basic) …

  5. 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 …

  6. Understanding Boolean Data Types - w3resource

    Jan 10, 2025 · Learn about Boolean data types, their usage in programming, and examples in Python and JavaScript. Perfect guide for beginners to understand true/false values.

  7. Boolean data type | Research Starters - EBSCO

    The Boolean data type is a fundamental concept in computer programming, representing data that can hold one of two values: true or false. These values can also be expressed in various …

  8. Java Booleans - W3Schools

    For this, Java has a boolean data type, which can store true or false values. The name boolean comes from George Boole, a mathematician who first defined the logic system used in …

  9. devstaging.phoenixnap.com

    What Is a Boolean Data Type? A boolean is a data type with two possible values: true (1) or false (0). The two values help represent truth conditions found in logic control structures. The name …

  10. 6.3: Boolean Data Type - Engineering LibreTexts

    The Boolean data type is also known as the logical data type and represents the concepts of true and false. The name "Boolean" comes from the mathematician George Boole; who in 1854 …