Which of the following expressions would check if a number, x, is outside the range 90 - 100, inclusive (i.e., either less than 90 or greater than 100)?

a) x < 90 or x > 100
b) x >= 90 and x <= 100
c) x > 90 and x < 100
d) x <= 90 or x >= 100