CompSci - Logical Operations Flashcards
1
Q
Register Clearing
A
Setting bits to 0 using an AND gate
2
Q
Masking
A
Changing the value of specified bits using logic gates
3
Q
Encryption
A
Hide the contents of specified bits using a key, which can be used to decode the contents
4
Q
De Morgan’s Laws
A
NOT (A AND B) = NOT(A) OR NOT(B)
NOT (A OR B) = NOT(A) AND NOT(B)