An OR gate combines two inputs and returns TRUE if at least one of the inputs is also TRUE.

Input 1Input 2Output
Input 1
0
Input 2
0
Output
0
Input 1
0
Input 2
1
Output
1
Input 1
1
Input 2
0
Output
1
Input 1
1
Input 2
1
Output
1