Wednesday, July 02, 2025 06:32

Posts Tagged ‘comparison operator’

Comparison operators

Friday, January 6th, 2017

Another kind of operators we have enumerated are the comparison operators. As their name suggest, comparison operators are used to compare operands. There are 6 comparison operators:

>    greater than
<    less than 
>=   greater than or equal to
<=   less than or equal to
==   equality
!=
Read more