Concept:Matrix multiplication: To find matrix A, multiply an unknown matrix A by the given matrix, then compare each corresponding entry of the resulting product with the right-hand side matrix.Explanation:Let A=[acbd].Then multiplying by the given matrix gives:[acbd][021−1]=[2b2da−bc−d]This must equal [21−10].Comparing the entries gives four equations:2b=2,a−b=−1,2d=1,c−d=0.Solve them:b=22=1,a−1=−1⇒a=0,d=21,c=d=21.So the matrix A is formed from these values.Answer:A=[021121]This corresponds to Option B.