Logical and
a.k.a. and, ∧, logical conjunction
A boolean algebra expression such that a ∧ b
is true
when both terms are true
, and false
otherwise.
Truth Table
1 ∧ 1 = 1
1 ∧ 0 = 0
0 ∧ 1 = 0
0 ∧ 0 = 0
A boolean algebra expression such that a ∧ b
is true
when both terms are true
, and false
otherwise.
1 ∧ 1 = 1
1 ∧ 0 = 0
0 ∧ 1 = 0
0 ∧ 0 = 0