Logical operators

From Helpful
Revision as of 11:17, 14 August 2023 by Helpful (talk | contribs) (Created page with "{{stub}} <!-- =Unary operators= ==not== Informally: "Inversion" a result 0 1 1 0 =Binary operators= ==or== Informally: "if anything" a b result 0 0 0 0 1 1 1 0 1 1 1 1 ==and== Informally: "Only if both" a b result 0 0 0 0 1 0 1 0 0 1 1 1 ==nand== Informally: "Not both" a b result 0 0 1 0 1 1 1 0 1 1 1 0 ==nor== Informally: "If nothing" a b result 0 0 1 0 1 0 1 0 0 1 1 0 ==xor== Informally: "Exclusive or", "either-or"...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
This article/section is a stub — some half-sorted notes, not necessarily checked, not necessarily correct. Feel free to ignore, or tell me about it.