Use the following variable definitions
Section .data
var1 DB -4,-2,3,1
var2 DW 1000h,2000h,3000h,4000h
var3 DW -16,-42
var4 DW 1,2,3,4,5What will be the value of the destination operand after each of the following instructions execute in sequence?
Mov edx, var4 ;a
Movzx edx, var2 ;b
Mov edx, [var4+4]; c
Movsx edx, var1 ; d
d. FFFFFFFCh ↕
c. 00000002h ↕
b. 00001000h ↕
a. 00000001h ↕
I don't know how to solve this question.