In a pinch, another approach is to find two numbers that behave like this, then see what they have in common and generalize from there.
If x leaves a remainder of 4 when divided by 7, we can say
x = 7m + 4
where m is some integer whose value we don't care about.
Similarly, if x leaves a remainder of 9 when divided by 11, we can say
x = 11n + 9
where n is some integer whose value we don't care about.
Since x = x, we also have 7m + 4 = 11n + 9, or 7m = 11n + 5. This suggests that we're looking for a multiple of 7 that is 5 greater than a multiple of 11.
Checking the multiples of 11, plus 5, we find
16, 27, 38, 49, 60, 71, 82, 93, 104, 115, 126, ...
Having found two of these, we can generalize that each solution is likely to be (126 - 49) units apart, or 77 units apart. (That should make sense, since 77 = 7*11).
That means that our initial solutions will all be of the form 77*(some integer) + 49, meaning that we have
77*0 + 49
77*1 + 49
77*2 + 49
...
and so on, with our ceiling coming at 1000. 77*13 = 1001, so that's too big, meaning we must only go to 77*12 + 49.
Since we started at 77*0 and made it to 77*12, we have 0 to 12, or 13 solutions, and we're set. To find the actual answers, add 4 to each, since we began by subtracting 4 to simplify. (In other words, our solution set becomes 49+4, 126+4, etc.)
This seems like a little more remainder theory than the GMAT expects of you, however.