KnowledgeBoat Logo

Computer Science

Define the following with the help of truth table:

Bitwise NOT

Java Operators

ICSE

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
01
10

Answered By

2 Likes


Related Questions