Concept:Matrix multiplication of a skew‑symmetric matrix P with a symmetric matrix Q yields a null matrix, and such products commute when both are zero.Explanation:Given P=0−cbc0−a−ba0 (skew‑symmetric) and Q=a2abacabb2bcacbcc2 (symmetric).Compute PQ by multiplying row by column:Each entry (PQ)ij equals the dot product of the i‑th row of P and the j‑th column of Q.For example, (1,1) entry: 0⋅a2+c⋅ab+(−b)⋅ac=a(cb−bc)=0.Similarly, all nine entries become zero. Hence PQ is a null matrix of order 3.Compute QP likewise: each entry is the dot product of a row of Q and a column of P, e.g., (1,1): a2⋅0+ab⋅(−c)+ac⋅b=a(−bc+bc)=0.Thus QP is also a null matrix, not an identity matrix. So statement II is false.Since PQ and QP are both null matrices, they are equal; statement III is true.Answer:Only statements I and III are correct. Hence Option C.