Given implent 10010101 turn off bits in positions 2345 Use a
Given implent 10010101
turn off bits in positions 2,3,4,5. Use and, or, xor methods to complete problem. Show all work
Solution
Given implent =10010101
Use of AND :
lets take and operation with 00000000
= 00000000 & 10010101
= 00000000
Operation of OR gate :
10010101
11111111
10010100
Again OR gate 10010100
11111111
10010011
Again OR gate 10010011
11111111
00010010
Again OR gate 00010010
11111111
00010001
Again OR gate 00010010
11111111
00010001
Again OR gate 00010001
11111111
10001000
Again OR gate 10001000
11111111
00001111
XOR gate 00001111
11111111
11100001
The bits 2,3,4,5 are reset to the zero.

