Boolean operators: Difference between revisions
Mr. MacKenty (talk | contribs) (Created page with "<center> <blockquote style="padding: 5px; background-color: #FFF8DC; border: solid thin gray;"> File:Exclamation.png This is an '''important concept'''. You should ful...") |
Mr. MacKenty (talk | contribs) No edit summary |
||
Line 7: | Line 7: | ||
[[File:binary.png|frame|right|This is a basic concept in computer science]] | [[File:binary.png|frame|right|This is a basic concept in computer science]] | ||
In computer science, the Boolean data type is a data type, having two values (usually denoted true and false), intended to represent the 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. The Boolean data type is primarily associated with conditional statements, which allow different actions and change control flow depending on whether a programmer-specified Boolean condition evaluates to true or false. It is a special case of a more general logical data type; logic does not always have to be Boolean.<ref>https://en.wikipedia.org/wiki/Boolean_data_type</ref> | |||
== | == Boolean== | ||
This is one of the better videos I've seen on | This is one of the better videos I've seen on boolean. Content gratefully used with permission : <ref>http://cs50.tv/2015/fall/#license,psets</ref> | ||
<html> | <html> | ||
<iframe width="560" height="315" src="https://www.youtube.com/embed/ | <iframe width="560" height="315" src="https://www.youtube.com/embed/M058skV1iL0" frameborder="0" allowfullscreen></iframe> | ||
</html> | </html> | ||
== Do you understand this topic? == | == Do you understand this topic? == | ||
== Do you have an advanced understanding about this topic? == | == Do you have an advanced understanding about this topic? == |
Revision as of 11:50, 1 June 2016
This is an important concept. You should fully understand this.
In computer science, the Boolean data type is a data type, having two values (usually denoted true and false), intended to represent the 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. The Boolean data type is primarily associated with conditional statements, which allow different actions and change control flow depending on whether a programmer-specified Boolean condition evaluates to true or false. It is a special case of a more general logical data type; logic does not always have to be Boolean.[1]
Boolean[edit]
This is one of the better videos I've seen on boolean. Content gratefully used with permission : [2]
Do you understand this topic?[edit]
Do you have an advanced understanding about this topic?[edit]
- [[2.1.11 Define the Boolean operators: AND, OR, NOT, NAND, NOR and XOR. Level 1
- [[2.1.12 Construct truth tables using the above operators. Level 3
- [[2.1.13 Construct a logic diagram using AND, OR, NOT, NAND, NOR and XOR gates. Level 3