Find the residue of \( (67 + 89 + 90 + 87) \pmod{11} \):
This problem uses modular arithmetic. The remainder of a sum modulo \(n\) equals the sum of individual remainders modulo \(n\), simplifying calculations by using smaller numbers.
The core property is \[ (a + b + c + d) \pmod{n} = \left( (a \pmod{n}) + (b \pmod{n}) + (c \pmod{n}) + (d \pmod{n}) \right) \pmod{n}. \] We'll find each number's remainder when divided by 11.
Now, sum the remainders: \[ 1 + 1 + 2 + 10 = 14. \] Finally, find the remainder of this sum modulo 11: \[ 14 \pmod{11}: \quad 14 = 1 \times 11 + 3. \quad \text{So,} \quad 14 \equiv 3 \pmod{11}. \]
The final remainder is \( \boxed{3} \).