Difficulty: Easy
Correct Answer: One bit
Explanation:
Introduction / Context:
Shift registers are arrays of flip-flops used for temporary storage and serial/parallel conversion. Each flip-flop is a 1-bit memory element, so capacity scales linearly with stage count.
Given Data / Assumptions:
Concept / Approach:
A standard flip-flop stores one of two states (0 or 1). Therefore, a k-stage shift register stores k bits. Larger units such as nibbles and bytes are formed by grouping 4 or 8 such stages, respectively.
Step-by-Step Solution:
Verification / Alternative check:
Datasheets label Q0..Q7 for an 8-stage register, explicitly indicating 8 single-bit outputs.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
One bit
Discussion & Comments