Use the following variable definitions: .data var1 SBYTE -14, -11, 12, -14 var2 WORD 0CD12h, 0BE98h, 0F123h, 21F4h var3 SWORD -23, -6 var4 DWORD -41,24, -7, -12,11 Show your answers in Hexadecimal. execute in sequence: mov edx, var4 ; a: movzx edx, [var2+6] ; b: mov edx, [var4+12] ; c: movsx edx, var1 ; d: What will be the value of the destination operand after each of the following