Logical operators: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

14 August 2023

  • curprev 11:1711:17, 14 August 2023Helpful talk contribs 5,675 bytes +5,675 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"..."