Boolean

esse quam videri
Revision as of 15:05, 19 June 2019 by Pedro (talk | contribs) (Explanation)
Jump to: navigation, search

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.

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