An OR gate takes two inputs, A and B.

Complete the truth table for this gate.

A
B
Output
FALSE
FALSE
OFF
TRUE
FALSE
ON
FALSE
TRUE
ON
TRUE
TRUE
ON

Note: This truth table assumes that the OR gate is a standard OR gate, where the output is "ON" or "TRUE" if either input is "ON" or "TRUE" (or both), and the output is "OFF" or "FALSE" only if both inputs are "OFF" or "FALSE".

A | B | Output
----------------------
FALSE | FALSE | OFF
TRUE | FALSE | ON
FALSE | TRUE | ON
TRUE | TRUE | ON