<logic> (Or "conjunction") The Boolean truth-function which is true only if all its arguments (called conjuncts) are true. Also the connective denoting this function; also the compound proposition built from this connective.
The {truth table}
for the two argument AND function is:
A | B | A AND B --+---+--------- F | F | F F | T | F T | F | F T | T | TNotation: p o q; sometimes also p & q or pq or p ^ q. In the C programming language it is represented by the && (logical and) operator.
Try this search on OneLook / Google