⟩ Find the fourth row, having the bit pattern as an integer in an 8-bit computer, and express the answer in its decimal value.A 0 0 0 0 1 1 1 1B 0 0 1 1 0 0 1 1C 0 1 0 1 0 1 0 1(AU(B-C)) ?
223 is answer
B-C is bitwise addition of B and 2s compliment of C
then bitwise union of A with abover result gives the ans as 1101 1111 which
has decimal value of 223.