Concept:For a system of linear equations AX=B, if det(A)=0, a unique solution exists. If det(A)=0, we check (adjA)⋅B: zero gives infinitely many solutions; non-zero gives no solution.Explanation:Write the system in matrix form: 1131−1−1125xyz=86kCompute det(A)=1(−5+2)−1(5−6)+1(−1+3)=−3+1+2=0.Since det(A)=0, a unique solution is impossible. Statement 3 is false.Find adjA=−312−6243−1−2.For k=15, B=8615. Compute (adjA)⋅B: (−3)(8)+(−6)(6)+(3)(15)=−24−36+45=−15=0 ⇒ no solution. Statement 1 is correct.For k=20, B=8620. Compute (adjA)⋅B: (−3)(8)+(−6)(6)+(3)(20)=−24−36+60=0 ⇒ infinitely many solutions. Statement 2 is correct.Answer:Only statements 1 and 2 are correct. Hence the correct code is A (1 and 2 only).