Truth Table for OR Gate:
The OR gate outputs 1 if at least one of its inputs is 1. Otherwise, it outputs 0.
\[
\begin{array}{|c|c|c|}
\hline
A & B & A \, \text{OR} \, B
\hline
0 & 0 & 0
0 & 1 & 1
1 & 0 & 1
1 & 1 & 1
\hline
\end{array}
\]
Truth Table for AND Gate:
The AND gate outputs 1 only if both of its inputs are 1. Otherwise, it outputs 0.
\[
\begin{array}{|c|c|c|}
\hline
A & B & A \, \text{AND} \, B
\hline
0 & 0 & 0
0 & 1 & 0
1 & 0 & 0
1 & 1 & 1
\hline
\end{array}
\]