Concept:The adjoint of a matrix is the transpose of its cofactor matrix.Explanation:First, find the minors of A=120013201.A minor mij is the determinant after removing the i-th row and j-th column.m11=(1)(1)−(0)(3)=1.m12=(2)(1)−(0)(0)=2.m13=(2)(3)−(1)(0)=6.m21=(0)(1)−(2)(3)=−6.m22=(1)(1)−(2)(0)=1.m23=(1)(3)−(0)(0)=3.m31=(0)(0)−(2)(1)=−2.m32=(1)(0)−(2)(2)=−4.m33=(1)(1)−(0)(2)=1.Now compute cofactors: cij=(−1)i+jmij.c11=+1,c12=−2,c13=+6,c21=+6,c22=+1,c23=−3,c31=−2,c32=+4,c33=+1.So the cofactor matrix is C=16−2−2146−31.The adjoint is the transpose: adj(A)=CT=1−2661−3−241.Answer:1−2661−3−241 which matches option B.