Concept:Use matrix inverses and associativity to simplify the product XY.Explanation:Given XA=BT and A−1Y=B.Multiply XA=BT on the right by A−1 to get X=BTA−1.Multiply A−1Y=B on the left by A to get Y=AB.Now, XY=(BTA−1)(AB).Using associativity, XY=BT(A−1A)B.Since A−1A=I, we get XY=BTIB=BTB.Here, BT=[101] and B=101.Therefore, BTB=12+02+12=2.So, XY=[2].Answer:Option D: [2]