Returns true if the first expression is contained within the specified min and max (inclusive), otherwise false.
x ← inrange(expression, min, max)
inrange(age,35,40)
inrange(q10,8,10)
The above is equilavent to writing:
(age >= 35 and age <= 40)
(q10 >= 8 and q10 <= 10)