Difficulty: Easy
Correct Answer: tie them HIGH
Explanation:
Introduction / Context:Unused inputs can cause excess power, oscillation, or susceptibility to noise. TTL and CMOS families behave differently when inputs are left open; correct biasing depends on the logic technology.
Given Data / Assumptions:
Concept / Approach:TTL inputs tend to float HIGH due to internal biasing but can pick up noise and switch unpredictably. Best practice is to tie unused TTL inputs to a defined logic level. For a NAND gate, tying unused inputs HIGH keeps them logically neutral, letting the used inputs control the gate output without added propagation or current issues.
Step-by-Step Solution:
Never leave TTL inputs floating; define a logic level.For NAND, a HIGH on an unused input does not change the function of the remaining inputs (X NAND 1 = NOT X).Tie unused inputs to VCC (directly or via a resistor as appropriate) to reduce noise.Verify output behavior remains predictable and stable.Verification / Alternative check:Application notes recommend tying unused TTL inputs to HIGH; for CMOS, unused inputs must also be tied to defined levels (often via pull-ups/pull-downs).
Why Other Options Are Wrong:
Common Pitfalls:Confusing TTL and CMOS practices; while both should not float, the current behavior and preferred tie level can differ by gate function.
Final Answer:tie them HIGH
Discussion & Comments