Concept: Transposing matrix A swaps its rows and columns, then you add corresponding elements of matrices of the same order.Explanation:The transpose of A is formed by turning each column of A into a row.AT=32142−1Both AT and B are 3×2 matrices, so they can be added entry by entry.Row 1: 3+1=4, 4+4=8Row 2: 2+0=2, 2+1=3Row 3: 1+3=4, −1+2=1Thus AT+B=424831Answer: Option D: 424831