Let n be an integer value. Which of the following expressions evaluates to true if and only if n is a two-digit integer (i.e., in the range from 10 to 99, inclusive)?

a. n = (n MOD 100)
b. (n ≥ 10) AND (n < 100)
c. (n < 10) AND (n ≥ 100)
d. (n > 10) AND (n < 99)