Computer Science
Define the following with the help of truth table:
Bitwise AND
Java Operators
2 Likes
Answer
This operator results in high (1) if both the operands are high, otherwise low (0).
Truth Table
a | b | a&b |
---|---|---|
0 | 0 | 0 |
0 | 1 | 0 |
1 | 0 | 0 |
1 | 1 | 1 |
Answered By
1 Like