Concept:
First multiply the matrices \(A\) and \(B\), then take transpose of the product.
Step 1: Given:
\[
A=\begin{bmatrix}
1 & 2 \\
3 & 4
\end{bmatrix},
\quad
B=\begin{bmatrix}
1 & 0 \\
1 & 0
\end{bmatrix}
\]
Step 2: Find \(AB\):
\[
AB=
\begin{bmatrix}
1 & 2 \\
3 & 4
\end{bmatrix}
\begin{bmatrix}
1 & 0 \\
1 & 0
\end{bmatrix}
\]
Step 3: Multiply row by column:
\[
AB=
\begin{bmatrix}
1(1)+2(1) & 1(0)+2(0) \\
3(1)+4(1) & 3(0)+4(0)
\end{bmatrix}
\]
\[
AB=
\begin{bmatrix}
3 & 0 \\
7 & 0
\end{bmatrix}
\]
Step 4: Now take transpose:
\[
(AB)^T=
\begin{bmatrix}
3 & 7 \\
0 & 0
\end{bmatrix}
\]
\[
\boxed{\begin{bmatrix}3 & 7 \\ 0 & 0\end{bmatrix}}
\]