What are the values of the registers AX and BX after the following assembly code executes?
MOV AX, 2
MOV BX, 1
ADD AX, BX
i. AX=2, BX=1
ii. AX=1, BX=2
iii. AX=3, BX=1
iv. AX=2, BX=3
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
The values of the registers AX and BX after the above assembly code execution is AX=3, BX=1 [Option (iii)].
i