AND Operator

x <- true
y <- true
z <- x AND y
DISPLAY(z)


AND Operator

x <- true
y <- true
z <- x AND y
DISPLAY(z)

true

OR Operator

a <- true
b <- false
c <- a OR b
DISPLAY(c)


OR Operator

a <- true
b <- false
c <- a OR b
DISPLAY(c)

true

NOT Operator

x <- true
y <- NOT x
DISPLAY(y)


NOT Operator

x <- true
y <- NOT x
DISPLAY(y)

false