Question # 3: find out All Boolean operations (AND, OR, XOR, NOT)
A = 00110100
B= 11001000
Answers
Answered by
0
Answer:
AND
00000000
OR
11111100
NOT
NOT A IS 11001011
NOT B IS 00110111
XOR
11111100
Explanation:
AND - if both the input are 1 then 1 else 0
OR- if both the input are 1 then 0 else 1
NOT-0 THEN 1 .input 1 then 0
XOR-if both the input are same then 0.else 1
Similar questions