400
Which of the following two is faster to execute? And why?
a) MOV AX, BX
b) PUSH AX
Ans=a)
a) uses internal register, so it is faster than b) which uses stack. Stack is always in the external RAM, so it is slower to access than the internal registers