This is my MWE:
\documentclass[pdf]{beamer}
\begin{document}
\begin{frame}
\begin{table}[ht]
\caption{GLIFT Label Propagation Rules for AND gate}
\centering
\begin{tabular}{c | c c c c}
\hline\hline
AND & (Trusted, 0) & (Trusted, 1) & (Untrusted, 0) & (Untrusted, 1) \\
\hline
(Trusted, 0) & Trusted & Trusted & Trusted & Trusted \\
(Trusted, 1) & Trusted & Trusted & Untrusted & Untrusted \\
(Untrusted, 0) & Trusted & Untrusted & Untrusted & Untrusted \\
(Untrusted, 1) & Trusted & Untrusted & Untrusted & Untrusted \\
\hline
\end{tabular}
\label{table:AND}
\end{table}
\end{frame}
\end{document}
The problem is the table doesn't fit in a frame.

