Tuesday, October 5, 2010

Logical and Bitwise Operators

Page : 1 2 3 4 5 6 7 8 9 10 11 12 13 14


The logical operators compare Boolean expressions and return a Boolean result. In short, logical operators are expressions which return a true or false result over a conditional expression.

The table is given below.

Example


n = Not 10 > 7
MsgBox("N is True")

n = Not 10 <>