Computer Science
Define the following with the help of truth table:
Bitwise NOT
Java Operators
2 Likes
Answer
This operator results in high (1) if bit operand is low (0) and vice-versa. Bitwise NOT is a unary operator.
Truth Table
a | !a |
---|---|
0 | 1 |
1 | 0 |
Answered By
1 Like