Difference between revisions of "Boolean"

esse quam videri
Jump to: navigation, search
(Example)
(Example)
Line 15: Line 15:
 
=Example=
 
=Example=
 
Here’s an example related to pizza:
 
Here’s an example related to pizza:
 
+
<syntaxhighlight lang ="csharp">
{| class="BoolTable"
+
bool tastesGood = true;
|-
+
bool isCheesy = false;
|bool tastesGood = true;
+
bool hasTomatoes = true;
|-
+
</syntaxhighlight>
|bool isCheesy = false;
 
|-
 
|bool hasTomatoes = true;
 
|-
 
|}
 
  
 
=Resources=
 
=Resources=

Revision as of 20:13, 19 June 2019

Definition

A variable having two possible values called “true” and “false.” It can be thought of as a binary value.

Relevance

Explanation

A boolean is a data type intended to represent the two truth values of logic and Boolean algebra.

In programming and coding, you can create your own boolean variable and set it to true or false by saying “bool (nameOfYourVariable) = true;”

Boolean variables can be named with words and phrases that relate to a true/false conditional statement, such as “is,” “has,” etc.

Example

Here’s an example related to pizza:

bool tastesGood = true;
bool isCheesy = false;
bool hasTomatoes = true;

Resources

See also

Notes

External Links

https://en.wikipedia.org/wiki/Data_type