I have added a image of the question below, but to explain: suppose you have two matrices, one called C and another called B, how do you work out (CB)^T? is it a matter of multiplying C and B and then transposing or is it a matter of B transposed multiplied by C transposed since order of multiplication matters a lot as well as row/columns!
I think I have i) and ii) understood however it is the questions that follow after, especially the fourth
My question is to do with order, AB^T = B^T * A^T but how does this work? Are the transposed version worked out first before multiplying or can one simply do B*A and then find transposed version?
"$(CB)^T$" means "multiply $B$ by $C$ on the left, then take the transpose of the result". This is what parentheses mean: do what is inside the parentheses before what is on the outside.
That said, mathematical operations often have properties that tell you two different calculations will give the same result. For instance:
$(AB)^T = B^TA^T$ is just another example of such a law: The left side tells you to multiply $AB$ first, then transpose. The right side says to transpose $A$ and $B$ first, and then multiply them together in the reverse order. The law tells you it doesn't matter which calculation you do, the final result will be the same either way.
This law isn't just something someone made up on a whim (and neither are the other laws). It is a consequence of how matrix multiplication and transposition are defined, as is demonstrated in Nightflight's linked thread.