Result = Expression AND Expression
Computes the logical and of two boolean expressions, or the numerical and of two integer numbers.
PRINT TRUE AND FALSE False
PRINT TRUE AND TRUE True
PRINT 7 AND 11 3