nOperand Relational_Operator Operand
nPrice < 10.5
nOperator Meaning Example
n < Less Than age
< 20
n > Greater than
height > 6.2
n <= Less than or equal to num1 <= num2
n >= Greater than or equal to temp >= 98.5
n == Equal to grade
== 100
n != Not Equal to character
!= ‘a’
n