Difficulty: Medium
Correct Answer: 1000
Explanation:
Introduction / Context:Many parallel-access registers support both a parallel load and shift operations. This question checks whether you can track the bit pattern through several left shifts after an initial parallel load.
Given Data / Assumptions:
Concept / Approach:A left shift moves each bit toward the MSB. Q3 is discarded each shift, Q0 receives a zero. Track the pattern step by step for three clocks.
Step-by-Step Solution:
Initial after load: 0 1 1 1After 1st left shift: 1 1 1 0After 2nd left shift: 1 1 0 0After 3rd left shift: 1 0 0 0Verification / Alternative check:Count the number of ones: initially three ones. After three left shifts with zero fill in a 4-bit word, only the most significant position remains 1 and the rest become 0, giving 1000 as obtained.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:1000
Discussion & Comments