1. tells you that w + 2 > 0, so w > -1. Not sufficient to know whether w is greater than 1.
2. w^2 > 1 means that w^2 - 1 > 0
w^2 - 1 > 0
(w - 1)(w + 1) > 0
This is a quadratic equation with two roots, -1 and 1. The quadratic equation is only positive outside the roots, so w is either smaller than -1 or greater than 1.
Another way of looking at this is to notice that 1 is the square of both 1 and -1. w^2 > 1 means that you can have either w < -1 (take w = -2 for instance) or w > 1 (take w = 3).
As you can see, 2 yields two possible intervals for w, so it's not enough either.
But put both together and using the fact that w > -1 from stmt 1 eliminates one interval from stmt 2, leaving only w > 1. C is your answer here.