The following code highlights different content positioning of a frame:

% Content positioning 
\documentclass{beamer}

% Theme choice
\usetheme{Berlin}

\begin{document}

\begin{frame}[t]
    This content will be placed at the top of the frame.
\end{frame}

\begin{frame}[c]
    This content will be placed at the center of the frame.
\end{frame}

\begin{frame}[b]
    This content will be placed at the bottom of the frame.
\end{frame}

\end{document}

Compiling this code yields:

Top positioning of a content beamer latex
Center positioning of a content beamer latex
Bottom positioning of a content beamer latex