1. Input Output
    A B Y
    0 0 0
    0 1 0
    1 0 0
    1 1 1
    , AND gate
  2. Input Output
    A B Y
    0 0 1
    0 1 0
    1 0 0
    1 1 0
    , NOR gate
  3. Input Output
    A B Y
    0 0 1
    0 1 1
    1 0 1
    1 1 0
    , NAND gate
  4. Input Output
    A B Y
    0 0 0
    0 1 1
    1 0 1
    1 1 1
    , OR gate
5 views

1 Answers

Option 4 : Input Output A B Y 0 0 0 0 1 1 1 0 1 1 1 1 , OR gate

Given:

2-input two nor gates

Concept:

NOR gate is NOT equivalent to OR gate. For OR gate if any input is 1, the output is 1, and only if all inputs are 0 then only the output is 0. NOR gates just inverts this output.

The truth table for the 2-input NOR gate is shown below - 

[ alt="F3 Madhuri Engineering 28.06.2022 D4" src="//storage.googleapis.com/tb-img/production/22/06/F3_Madhuri_Engineering_28.06.2022_D4.png" style="width: 137px; height: 132px;">

Calculations:

• A = 0, B = 0 → Output of first NOR gate = 1

Input for second NOR gate = (1 , 1) ∴ output of second NOR gate = 0

• A = 0, B = 1 → Output of first NOR gate = 0

Input for second NOR gate = (0 , 0) ∴ output of second NOR gate = 1

• A = 1, B = 0 → Output of first NOR gate = 0

Input for second NOR gate = (0 , 0) ∴ output of second NOR gate = 1

• A = 1, B = 1 → Output of first NOR gate = 0

Input for second NOR gate = (0 , 0) ∴ output of second NOR gate = 1

5 views

Related Questions