Relational Operators

AKA Logical operators or Comparison operators.

Relational operators compare data and produce an answer of either true or false. The answer can control the flow of a program using IF, WHILE or REPEAT UNTIL statements.

Example:

If DblSalary <= 1000 then

Symbols used:  <,>,=

 

 

 

Leave a comment