AND
AND yields TRUE only if both values are TRUE:- FALSE and FALSE = FALSE
- TRUE and FALSE = FALSE
- FALSE and TRUE = FALSE
- TRUE and TRUE = TRUE
// The statement is executed only if BOTH conditions are true: if (A = 1) AND (B = 2) then writeln('Bingo!');Source: Reserved Words