By the division property given an integer $N$ and a number $q$ then there exists unique integers $a, r$ where $N = a*q + r$ and $r$, the remainder is $0 \le r < q$.
The least non negative residue of $N \pmod q$ is precisely that $r$.
And we know if $a \equiv b\pmod q$ then $a^k \equiv b^k \pmod q$ and therefore if $a^k \equiv 1 \pmod q$ then $a^{mk +r} = (a^k)^m\cdot a^r \equiv (1)^m\cdot a^r\equiv a^r\pmod d$.
So we know by FLT then $7^{10}\equiv 1\pmod 11$, we can reduce the ridiculously huge $7^{4275}$ to $7^{10*427 + 5} = (7^{10})^{427}\cdot 7^5$ to get $7^{4275}\equiv (7^{10})^{427}\cdot 7^5 \equiv 1^{427}\cdot7^5\equiv 7^5\pmod {11}$.
Surely $7^5$ is a much more reasonable number to deal with.
$7^5 = 16807$ and we want to find a residue $\mod 11$ so we want to solve $16808 = a*11 + r$. (Actually we don't give a flying fig about $a$-- we only care about $r$.
Well, if we divide $16807$ by $11$ we get $16807 = 1527*11 + 10$.
So $7^{4275} \equiv 7^5 = 16807=1527*11 + 10 \equiv 10 \pmod {11}$.
(Do you know the trick that two find the remainder of dividing by $11$ you subtract the even number from the odd. For $16797$ the even digits are $6 + 9 =15$ And the odd digits are $1+7+7= 15$. If you subtract you get $0$ so $16797$ is divisible by $11$. For $16807$ the even digits are $6+0 =6$ adn the odd are $1+8 + 7 =16$. You subtract and you get $16-6 =10$. So the remainder is $10$. And $16807 \equiv 10 \pmod {11}$. And we don't give a flying fig about what the quotient is.)