AND
Jump to navigation
Jump to search
Contents
Translingual[edit]
Symbol[edit]
AND
English[edit]
Noun[edit]
AND (plural ANDs)
- (logic) Alternative form of ∧, the conjunction operator.
- (logic) The binary operator and, only true if both of two inputs is true. In infix notation, it has values
(0 AND 0) = 0
(0 AND 1) = 0
(1 AND 0) = 0
(1 AND 1) = 1
Input | Output | |
---|---|---|
A | B | |
0 | 0 | 0 |
0 | 1 | 0 |
1 | 0 | 0 |
1 | 1 | 1 |
Antonyms[edit]
Coordinate terms[edit]
Translations[edit]
(logic)
Verb[edit]
AND (third-person singular simple present ANDs, present participle ANDing, simple past and past participle ANDed)
- (logic, transitive) To combine (a value) with another value by means of this operator.
- 2006, Gary R Wright, W Richard Stevens, The Implementation
- If an internal node is encountered that contains a mask, the search key is logically ANDed with the mask and another search is made of the subtree...
- 2006, Gary R Wright, W Richard Stevens, The Implementation