
OR gate
The output is 1 if the either inputs are 1.

NAND gate
The output is 1 if the the inputs are NOT both 1.
1 0 : 1
1 1 : 0
0 1 : 1
1 0 : 1

NOT gate
The output is 1 when the input is 0.

AND gate
The output will be 1 if both inputs are 1

NOR gate
The output is 1 if NOT (INPUT A OR INPUT B) are 1.
So basically, if both are 0.