Just because of how they have it set up?
Technically speaking, both sets of answers are 100% correct. It just depends on the tie-braking rule you prefer to use:
-- "rounding half up" always increases the number to the next positive integer (i.e. 3.5 becomes 4, -3.5 becomes -3, etc.).
-- "rounding half down" always decreases the number to the next positive integer (i.e. 3.5 becomes 3, -3.5 becomes -4, etc.).
-- "rounding half away from zero" moves the integer farther from the zero point (i.e. 3.5 becomes 4, -3.5 becomes -4, etc.).
-- "rounding half towards zero" moves it closer to the zero point (i.e. 3.5 becomes 3, -3.5 becomes -3, etc.).
-- "round half to even" moves it to the closest even integer (i.e. 3.5 and 4.5 both round to...