Relational Operators:
The operators which are used to compare two operands to
check whether they are equal, unequal, one is greater than the other.
The following are Relational Operators
|
Operator
|
Description
|
Example
|
|
<
|
Is less than
|
X < Y
|
|
>
|
Is greater than
|
X > Y
|
|
< =
|
Is less than or
equal to
|
X < = Y
|
|
> =
|
Is greater than or
equal to
|
X > = Y
|
|
= =
|
Is equal to
|
X = = Y
|
|
! =
|
Is not equal to
|
X ! = Y
|

