KnowledgeBoat Logo

Computer Science

Define the following with the help of truth table:

Bitwise AND

Java Operators

ICSE

3 Likes

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

3 Likes


Related Questions