NIMCET 2013 — Computer PYQ
NIMCET | Computer | 2013All digital circuits can be realized by using only:
Choose the correct answer:
- A.
Exclusive OR gates
- B.
NOR gate
(Correct Answer) - C.
Multiplexers
- D.
OR gate
NOR gate
Explanation
1. Universal Gates
A universal gate is a gate that can implement any Boolean function without the need for any other gate type. There are two primary universal gates:
-
NAND Gate
-
NOR Gate
Since the NOR gate is provided in Option 2, it is the correct answer. By combining multiple NOR gates, we can create the basic logic functions: NOT, AND, and OR.
2. Why the other options are incorrect
-
OR gate: It is a basic gate but not universal. You cannot create a NOT or NAND operation using only OR gates.
-
Exclusive OR (XOR) gates: While very useful for arithmetic, an XOR gate alone cannot represent all logic functions (e.g., it cannot act as a simple AND gate without additional logic).
-
Multiplexers: While a Multiplexer can implement any Boolean function, it is a combinational circuit, not a single logic gate. However, in many contexts, it is considered "functionally complete," but in the context of "realizing circuits using a single gate type," the NOR gate is the standard textbook answer.
3. Realizing Basic Gates using NOR
-
NOT Gate: Connect both inputs of a NOR gate together: Y=A+A=A.
-
OR Gate: Follow a NOR gate with a NOT (made from a NOR): Y=A+B=A+B.
-
AND Gate: Use De Morgan's Law by inverting the inputs first: Y=A+B=A⋅B.
