Answer:
0010
Step-by-step explanation:
Serially left shifted means that the left most bit will enter the register first. The left most bit already stored in the register will move out of the sequence. The "bold" bits mentioned below highlight these left most bits:
Initial State of the Register:
0000
Group of bits entering:
1011
First Clock Cycle:
0000 (This bold bit will move out)
1011 (This bold bit will move in from right side, shifting the whole sequence one place to the left).
The resulting Sequence:
0001
Second Clock Cycle:
0001 (This bold bit will move out)
1011 (This bold bit will move in from right side, shifting the whole sequence one place to the left).
The resulting Sequence:
0010 (Final Answer)