conj. | 1. | A particle which expresses the relation of connection or addition. It is used to conjoin a word with a word, a clause with a clause, or a sentence with a sentence. | |||
2. | In order to; - used instead of the infinitival to, especially after try, come, go. | ||||
3. | It is sometimes, in old songs, a mere expletive. | ||||
4. | If; though. See An,
|
(logic) | AND - (Or "conjunction") The Boolean function which is
true only if all its arguments are true. 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 | T AND is often written as an inverted "V" in texts on logic. In the C programming language it is represented by the && (logical and) operator. |