To multiply matrices we multiply the first row of the matrix by the first column of the other matrix and add the results
For example we do 2*3 + 8*2. to get 22 as the top left number in our resulting matrix.
We do this for the other numbers in the resulting matrix with the following calculations
2*0 + 8*-1 = -8 (top right)
.6*3 + 3*2 = 7.8 (bottom left)
.6*0 + 3*-1 = -3 (bottom right)
So the answer is C.