Simplify the boolean expression ¬(A.B)+A.

¬(A.B)+A -- given in question. =(¬A+¬B)+A -- using De Morgan's Law. =¬A+¬B+A -- can remove the brackets. =1+¬B -- using identity ¬A+A = 1.=1 -- using identity 1 + anything = 1.

Related Computing A Level answers

All answers ▸

What is meant by the term spooling? Give an example of when it can be used.


Convert the hexadecimal '3E', which represents a 2's compliment binary number, in decimal.


What is the difference between simplex, half duplex and full duplex?


Describe a queue data structure.