Difficulty: Easy
Correct Answer: HIGH, float
Explanation:
Introduction / Context:Floating inputs can wander unpredictably due to leakage and noise. A pull-up resistor biases a high-impedance input to a known logic state when no active driver is present. Understanding this is foundational for reliable digital design.
Given Data / Assumptions:
Concept / Approach:With a pull-up, the node tends to HIGH by default. When an open-collector/open-drain output sinks current, the same node transitions to LOW. The resistor sets a bias current and limits short-circuit power when pulled LOW.
Step-by-Step Solution:
1) Without a driver, an input is floating and undefined.2) Adding a resistor to VCC establishes a default logic HIGH.3) An active device can override by pulling the line to ground.4) Proper value selection balances noise immunity and current draw.Verification / Alternative check:Measure the node with no driver: it reads near VCC and is stable. When a sink turns on, it reads near 0 V.
Why Other Options Are Wrong:
Common Pitfalls:Using too strong (low-ohm) pull-ups causing high power dissipation, or too weak (high-ohm) values causing slow edges and susceptibility to noise.
Final Answer:HIGH, float
Discussion & Comments