Site icon TestingDocs.com

Flowgorithm Relational Operators

Overview

In this tutorial, we will learn about the Flowgorithm Relational operators. Relational operators are symbols that compare two operands and determine the relationship between them. These operators are also known as comparison operators.

Relational Operators

Flowgorithm supports C-like, BASIC-like, and Mathematics symbols. Some operators have redundant symbols.  The Flowgorithm Relational Operators are as follows:

 

Relational Operator Operator Symbol Description
Greater Than > a > b

Compares and returns True if variable a is greater than variable b.

Returns False if the variable a is less or equal to b.

Less Than < a < b

Compares and returns True if variable a is less than variable b.

Returns False if the variable a is greater or equal to b.

Greater Than or Equal To >=,≥ a >= b

Compares and returns True if variable a is greater than or equal to variable b.

Returns False if the variable a is less than b.

Less Than or Equal To <=, ≤ a <= b

Compares and returns True if variable a is less than or equal to variable b.

Returns False if the variable a is greater than b.

Equal To ==, = a == b

Compares and returns True if variable a is equal to variable b.

Returns False if the variable a is not equal to b.

Not Equal To !=, <>, ≠ a != b

Compares and returns true if variable a is not equal to variable b.

Returns False if the variable a is equal to b.

We can build conditional expressions using these operators to control the flow of the flowchart, loop statements, etc.

Example

Sample flowchart to demo the relational operators

Flowgorithm Tutorials

Flowgorithm flowchart tutorials on this website:

https://www.testingdocs.com/flowgorithm-flowchart-tutorial/

Flowgorithm Website

For more information on the Flowgorithm tool, please visit the official website at:

http://flowgorithm.org/

Exit mobile version