Exam tip 1
Examiners frequently test the difference between Logical and Arithmetic shifts. Always check if the question specifies a signed (two's complement) or unsigned number. If signed, use ASR for right shifts. If unsigned, use LSR. If the question doesn't specify, state your assumption, but LSR is the default for 'logical shift'.