Digital Logic Design Assignment Answers
Digital Logic Design Assignment Answers
Sequential Circuits:
- Definition: Outputs depend on both current inputs and previous states.
- Key Features:
- Require memory elements (like flip-flops) to store state information.
- Depend on a clock signal to synchronize operations.
- Examples:
- Flip-Flops: Used for storing a single bit of data.
- Counters: Count pulses based on clock inputs.
- Shift Registers: Shift data serially or parallelly.
- Real-Life Example: A digital watch keeps track of time using sequential circuits.
Truth Table:
| S1 | S0 | Selected Input | Output (Y) |
|----|----|----------------|------------|
| 0 | 0 | D0 | D0 |
| 0 | 1 | D1 | D1 |
| 1 | 0 | D2 | D2 |
| 1 | 1 | D3 | D3 |
Logic Circuit:
The MUX uses AND, OR, and NOT gates to implement the logic.
Logic Expression:
Y = ¬S1·¬S0·D0 + ¬S1·S0·D1 + S1·¬S0·D2 + S1·S0·D3.
5. Universal Gates
Definition:
Universal gates are gates that can replicate all basic operations (AND, OR, NOT) using just
one type of gate. NAND and NOR gates are universal.