Computer Science

Define the following with the help of truth table:

Bitwise AND

Java Operators

ICSE

1 Like

Answer

This operator results in high (1) if both the operands are high, otherwise low (0).

Truth Table

aba&b
000
010
100
111

Answered By

1 Like


Related Questions