Which of the following loops stops when the value in the instock variable is less than or equal to the value in the reorder variable?
a) while instock >= reorder:
b) while instock - reorder > 0:
c) while instock > reorder:
d) while instock <= reorder: