0. Find the boolean product A⊙B of the two matrices.
Here we have to follow two basics: 1- Matrics multiplication rule- For multiplication of two matrics, column in first matrics must be equal to rows in second matrics. 2- We have to find boolean product of two matrics so, we must know boolean product ie
A | B | F |
0 | 0 | 0 |
0 | 1 | 0 |
1 | 0 | 0 |
1 | 1 | 1 |
Now we have
So, option (A) is correct.