Computer Science
Define the following with the help of truth table:
Bitwise OR
Java Operators
3 Likes
Answer
Bitwise OR operator results in high (1), if either or all of its operands are high otherwise low (0).
Truth Table
a | b | a | b |
---|---|---|
0 | 0 | 0 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 1 |
Answered By
2 Likes