Concept:Matrix multiplication is performed by multiplying the rows of the first matrix with the columns of the second matrix.Explanation:Given P=(1521) and Q=(0113), we need to find PQ.For the element in the first row and first column: (1)(0)+(2)(1)=0+2=2.For the element in the first row and second column: (1)(1)+(2)(3)=1+6=7.For the element in the second row and first column: (5)(0)+(1)(1)=0+1=1.For the element in the second row and second column: (5)(1)+(1)(3)=5+3=8.Thus, PQ=(2178).Answer:The correct option is C: (2178).