When performing a Boolean AND between the octets 10010111 an
When performing a Boolean AND between the octets 10010111 and 11111000, what is the outcome?
A. 00000111
B. 11111000
C. 10011000
D. 10010000
Solution
boolean AND operation is the operation in which when we add 2 1\'s then it is a 1,otherwise its 0
eg:AND TABLE
A B (A AND B)
0 0 0
0 1 0
1 0 0
1 1 1
Logical AND is represented by &&
boolean AND operation
10010111
11111000
SOLUTION:10010000 i.e OPTION D
