You will use comparison and logical operators to perform logical operations like AND, OR, Equal to, Not equal to, etc.
Operator | Meaning | Example |
---|---|---|
= | Equal to | Input_1=Input_2 |
> | Greater than | Input_1>Input_2 |
< | Less than | Input_1<Input_2 |
>= | Greater than or equal to | Input_1>=Input_2 |
<= | Less than or equal to | Input_1<=Input_2 |
<> | Not equal to | Input_1<>Input_2 |
and | Logical and operator. & and && are also accepted. | Input_1 and Input_2 |
or | Logical or operator. | and || are also accepted. | Input_1 or Input_2 |