I used the following method using remainder theorem. (I used method from here: Find the remainder of $128^{1000}/153$.)
$$\begin{align} (50^{{51}^{52}})/11 & = (50^{2652})/11 \implies \\ (6^{2652})/11 & = (36^{1326})/11 \implies \\ (3^{1326})/11 &= (27^{442})/11 \implies \\ (5^{442})/11 & = ({25}^221)/11 \implies \\ (3^{221})/11 \end{align}$$
Now,
3^1/11 implies remainder 3
3^2/11 implies remainder 9
3^3/11 implies remainder 5
3^4/11 implies remainder 4
3^5/11 implies remainder 1
3^6/11 implies remainder 3
So modulo 11, powers of 3 repeat with period 5
so 221 is 1 modulo 5
so $50^{{51}^{52}}/11$ should become finally $3^1/11$ implies remainder 3 (my answer). Actual answer is 6.
What is wrong with this method?