We would like to use the theorem \(x^n\) % 11 = \((x - 11i)^n\) % 11 where \(i\) is any integer and make \(x - 11i\) either 1 or -1 to evaluate the remainder (x % 11 means the remainder of x/11). To do that we must change the base of the exponent close to a multiple of 11. The closest one, for now, is \(2^5 = 32\). So let us try to change the base to 32 and subtract 33.
\(2^{1344452457} = 2^2 * 2^{1344452455} = 2^2 * 2^{5 * n} = 2^2 * 32^n\). Here n represent the result of 1344452455/5 which is trivial.
One thing to note here is that n must be odd since the original exponent ends in 5. Then we can do the following:
\(2^2 * \frac{{32^n}}{11} = 4 * \frac{{32^n}}{11}\)
If we focus on \(\frac{{32^n}}{11}\) we have:
\(32^n\) % 11 = \((-1)^n\) % 11 = -1 % 11 (since n is odd) = -1.
Finally we multiply that by 4 to get -4 is the remainder, or -4 + 11 = 7 is the remainder. The answer is D.