Professional > Interview scripting > Writing interview scripts > Logical expressions > Checking numeric responses
 
Checking numeric responses
You can use the following operators for testing numeric responses:
Operator
Description
=
Equal to
<>
Unequal to
<
Less than
<=
Less than or equal to
>
Greater than
>=
Greater than or equal to
Examples
Age >= 21
is True for anyone aged 21 years or older, while:
Duration > 60
might be True for anyone whose journey to work takes more than 60 minutes.
See also
Logical expressions