Have you learned modular arithmetic? If you haven't, its basically something that allows you to throw away the parts of a number with a factor and leave you with a remainder. But since you don't know about it I'll explain it this way:
I can split up the exponent in 7^{211} for eg like this 7^2 X 7^{209}= 49 X 7^{209}. Now 49 is an easy number to deal with, and we see that 11 goes into it 4 times, and that 49 = 4(11) + 5. So now we can expland the original thing;
7^{211} = 7^2 x 7^{209} = (44 + 5) 7^{209} = 44X 7^{209} + 5X7^{209}
Now, since we are only interested in the remainder when divided by 11, rather than how many times exactly, we any drop off any multiplies of 11 we see, and we just created one, namely the 44* 7^(209) term.
So the remainder of 7^(211) is the same as the remainder of 5 x 7^(209). In effect, you can just broken it down, and the answer can be achieved by continuing until you reach a number less than 11, but it will be long if you just keep taking off the small amount like I did.
So see if you can find some clever way to do a lot of those breaking ups in one go, perhaps by trying a few small break ups yourself if you can't see it straight away.
EDIT: Sorry I didn't see your post VeeEight! I'll leave mine up here in case the OP doesn't know mod arithmetic.