Answers for "what is a Boolean"

9

what is a Boolean

Boolean refers to a system of logical thought that is used to create true/false
statements. A Boolean value expresses a truth value
(which can be either true or false). Boolean logic was developed by
George Boole, an English mathematician and philosopher, and has become the
basis of modern digital computer logic.
Posted by: Guest on December-05-2020
1

boolean

In computer science, the Boolean data type is a data type that has one of two possible values which is intended to represent the two truth values of logic and Boolean algebra. It is named after George Boole, who first defined an algebraic system of logic in the mid 19th century.
Posted by: Guest on November-21-2020
0

Booleans

bool isCSharpFun = true;
bool isFishTasty = false;
Console.WriteLine(isCSharpFun);   // Outputs True
Console.WriteLine(isFishTasty);   // Outputs False
Posted by: Guest on May-31-2021
0

boolean meaning

while (tries < 4) {
    cout << "Do you want to proceed (y or n)?\n";
    char answer = 0;
    cin >>answer;
    switch (answer) {
    case 'y':
    return true;
    case 'n':
    return false;
    default:
    cout << "Sorry, I don't undersand that.\n";
        ++tries;
        }
Posted by: Guest on November-29-2020
-1

boolean n = true

boolean n = true;
Posted by: Guest on June-20-2020

Browse Popular Code Answers by Language