BinaryCon Binary Converter

OR Gate Simulator

Result

OR Gate Simulator

Interactive OR gate simulator for teaching logic.

Example: A=1, B=0

Definition: Simulates a logical OR gate; output is 1 if either input is 1.

Conversion formula

OR operation (A ∨ B):
True if A or B (or both) are true.

Boolean: A ∨ B = A || B
Truth table:
A B | A ∨ B
0 0 | 0
0 1 | 1
1 0 | 1
1 1 | 1