Difficulty: Easy
Correct Answer: Correct
Explanation:
Introduction / Context:Registers are classified by how data enters and exits: serial-in/serial-out (SISO), serial-in/parallel-out (SIPO), parallel-in/serial-out (PISO), and parallel-in/parallel-out (PIPO). PIPO registers are useful whenever an entire word must be captured and later presented simultaneously. This item asks if a PIPO device actually has parallel input and output buses.
Given Data / Assumptions:
Concept / Approach:By design, PIPO devices expose N input pins (often D0..DN-1) and N output pins (Q0..QN-1). With a load or clock edge, the input word is sampled and then appears concurrently on the output bus, enabling quick data movement between subsystems without serializing.
Step-by-Step Solution:
Identify that “parallel in” requires N input lines.Identify that “parallel out” requires N output lines.Confirm that a load/clock edge transfers the word into the register and then to outputs.Therefore, the statement is correct by definition.Verification / Alternative check:Typical PIPO devices, including 74HC273 or similar, show N D-inputs and N Q-outputs with timing diagrams for parallel capture and update.
Why Other Options Are Wrong:
Incorrect: Contradicts standard terminology.True only for 8-bit / Valid only with serial I/O: Word size and presence of serial ports are independent of the PIPO definition.Common Pitfalls:Confusing PIPO with PISO/SIPO; forgetting that propagation and clock-to-Q delays still apply to “parallel” transfers.
Final Answer:Correct
Discussion & Comments