I know and understand the result.
For example:
7 (decimal) = 00000111 (binary)
and 7 >> 2 = 00000001 (binary)
Just my two cents: I did not see any mention to the fact that shifting right does not always produce the same results as dividing by 2. Since right shifting rounds toward negative infinity and integer division rounds to zero, some values (like -1 in two's complement) will just not work as expected when divided.