summarise a NOT gate
what are all the logic gates
Booleon expression for NOT gate
line over the letter(s)
summarise an AND (conjunction) gate
summarise OR gate (disjunction)
summarise XOR gate
summarise NAND gate
benefits of NAND gate
summarise a NOR gate
NOT is also known as
negation
how can de morgan’s law be remembered
“change the sign break the bar”, or “change the sign build a bar”
why is NAND known as a universal gate
because all the other gates are created by using this gate
If a logic gate expression is A.B + C, how do you know how to draw it?
In logic gate expressions, AND (·) operations are performed before OR (+) operations unless parentheses specify otherwise. For A.B + C, the expression is equivalent to (A.B) + C
What are logical bitwise operators, and how are they used in machine code?
Logical bitwise operators perform bit-level operations on binary values. The common operators are AND, OR, XOR, and NOT.