Concept:For a matrix A, adj(A) is the transpose of the cofactor matrix of A.Explanation:For A=[aij]3×3, we have aij=1 when i+j is even, and aij=0 when i+j is odd.So the elements with both i and j odd or both even are 1, and the rest are 0.Thus, A=101010101.Now compute the cofactor matrix of A.Cofactor of each element gives 10−1000−101.Since adj(A) is the transpose of the cofactor matrix, and this cofactor matrix is symmetric, we getadj(A)=10−1000−101.Answer:Hence, adj(A)=10−1000−101, which is Option B.