It's important that $4, 5, $and $11$ are pairwise prime. Here is how I do it. (Warning. Explaining how I do it will take up much more room than what it takes to actually just do it.)
I start by making the following table
\begin{array}{c|ccc|}
& 4 & 5 & 11 \\
\hline
55 \\
44 \\
20 \\
\hline
\end{array}
Where $
55 = \dfrac{4 \cdot 5 \cdot 11}{4}=5 \cdot 11, \qquad
44 = \dfrac{4 \cdot 5 \cdot 11}{5}=4 \cdot 11, \qquad
20 = \dfrac{4 \cdot 5 \cdot 11}{11}=5 \cdot 11.$
Note that $4 \cdot 5 \cdot 11 = 220$.
Then I compute the following numbers
\begin{array}{c|ccc|}
& 4 & 5 & 11 \\
\hline
55 & 55 \pmod{4} & 55 \pmod{5} & 55 \pmod{11} \\
44 & 44 \pmod{4} & 44 \pmod{5} & 44 \pmod{11}\\
20 & 20 \pmod{4} & 20 \pmod{5} & 20 \pmod{11}\\
\hline
\end{array}
Which turns out to be
\begin{array}{c|ccc|}
& 4 & 5 & 11 \\
\hline
55 & -1 & 0 & 0 \\
44 & 0 & -1 & 0\\
20 & 0 & 0 & -2\\
\hline
\end{array}
It will always happen that only the diagonal elements are non zero.
What you want to do is change each row by multiplying each number in that row by the number that will make the diagonal element equal to $1$. When the diagonal element is $-1$, this is really easy.
\begin{array}{c|ccc|}
& 4 & 5 & 11 \\
\hline
-55 & 1 & 0 & 0 \\
-44 & 0 & 1 & 0\\
20 & 0 & 0 & -2\\
\hline
\end{array}
It's easy to check that $-55 \pmod 4 = 1$ and $-44 \pmod 5 = 1$.
So we still need to figure out what to multiply $-2$ by to make the answer congruent to $1$ modulo $11$. Well $11+1=12 = (-6)(-2)$. So...
\begin{array}{c|ccc|}
& 4 & 5 & 11 \\
\hline
-55 & 1 & 0 & 0 \\
-44 & 0 & 1 & 0\\
-120 & 0 & 0 & 1\\
\hline
\end{array}
The above numbers are perfectly fine; they will work; but, I would do it differently. It turns out that you can always find numbers so that the left column adds up to $1$. Since $(-55) + (-44) = -99$, then we should be able to replace $-120$ with $100$. That makes sense, since we multiplied $20$ by $-6$ and since $-6 \equiv 5 \pmod{11}$, we get
\begin{array}{c|ccc|}
& 4 & 5 & 11 \\
\hline
-55 & 1 & 0 & 0 \\
-44 & 0 & 1 & 0\\
100 & 0 & 0 & 1\\
\hline
\end{array}
The answer is then $3(-55) + 2(-44) + 5(100) = 27 \pmod{220}$.