The orders are: $$A$$ is $$3 \times 3$$, $$B$$ is $$3 \times 2$$, $$C$$ is $$2 \times 4$$. All the products below are therefore defined.
Step 1: Compute $$BC$$ — order $$(3 \times 2)(2 \times 4) = 3 \times 4$$.
$$BC = \begin{bmatrix} 1 & 3 \\ 0 & 2 \\ -1 & 4 \end{bmatrix}\begin{bmatrix} 1 & 2 & 3 & -4 \\ 2 & 0 & -2 & 1 \end{bmatrix} = \begin{bmatrix} 1+6 & 2+0 & 3-6 & -4+3 \\ 0+4 & 0+0 & 0-4 & 0+2 \\ -1+8 & -2+0 & -3-8 & 4+4 \end{bmatrix}$$
$$= \begin{bmatrix} 7 & 2 & -3 & -1 \\ 4 & 0 & -4 & 2 \\ 7 & -2 & -11 & 8 \end{bmatrix}$$
Step 2: Compute $$A(BC)$$ — order $$(3 \times 3)(3 \times 4) = 3 \times 4$$.
$$A(BC) = \begin{bmatrix} 1 & 1 & -1 \\ 2 & 0 & 3 \\ 3 & -1 & 2 \end{bmatrix}\begin{bmatrix} 7 & 2 & -3 & -1 \\ 4 & 0 & -4 & 2 \\ 7 & -2 & -11 & 8 \end{bmatrix}$$
Row 1: $$[\,7+4-7,\ 2+0+2,\ -3-4+11,\ -1+2-8\,] = [4, 4, 4, -7]$$
Row 2: $$[\,14+0+21,\ 4+0-6,\ -6+0-33,\ -2+0+24\,] = [35, -2, -39, 22]$$
Row 3: $$[\,21-4+14,\ 6-0-4,\ -9+4-22,\ -3-2+16\,] = [31, 2, -27, 11]$$
$$A(BC) = \begin{bmatrix} 4 & 4 & 4 & -7 \\ 35 & -2 & -39 & 22 \\ 31 & 2 & -27 & 11 \end{bmatrix}$$
Step 3: Compute $$AB$$ — order $$(3 \times 3)(3 \times 2) = 3 \times 2$$.
$$AB = \begin{bmatrix} 1 & 1 & -1 \\ 2 & 0 & 3 \\ 3 & -1 & 2 \end{bmatrix}\begin{bmatrix} 1 & 3 \\ 0 & 2 \\ -1 & 4 \end{bmatrix} = \begin{bmatrix} 1+0+1 & 3+2-4 \\ 2+0-3 & 6+0+12 \\ 3+0-2 & 9-2+8 \end{bmatrix} = \begin{bmatrix} 2 & 1 \\ -1 & 18 \\ 1 & 15 \end{bmatrix}$$
Step 4: Compute $$(AB)C$$ — order $$(3 \times 2)(2 \times 4) = 3 \times 4$$.
$$(AB)C = \begin{bmatrix} 2 & 1 \\ -1 & 18 \\ 1 & 15 \end{bmatrix}\begin{bmatrix} 1 & 2 & 3 & -4 \\ 2 & 0 & -2 & 1 \end{bmatrix}$$
Row 1: $$[\,2+2,\ 4+0,\ 6-2,\ -8+1\,] = [4, 4, 4, -7]$$
Row 2: $$[\,-1+36,\ -2+0,\ -3-36,\ 4+18\,] = [35, -2, -39, 22]$$
Row 3: $$[\,1+30,\ 2+0,\ 3-30,\ -4+15\,] = [31, 2, -27, 11]$$
$$(AB)C = \begin{bmatrix} 4 & 4 & 4 & -7 \\ 35 & -2 & -39 & 22 \\ 31 & 2 & -27 & 11 \end{bmatrix}$$
Comparing Step 2 and Step 4, the two matrices are identical. Hence $$(AB)C = A(BC)$$, which illustrates the associative property of matrix multiplication.