Sid M. answered 12/21/20
Studied Computer Science and Engineering at University of Washington
The 'xchg bx,cx' instruction will exchange the values in register bx and cx so, given that the value of bx == x008b and cx == x1a0c beforehand, afterwards their values will be x1a0c and x008b, respectively. The answer is (iii).
The 'imul ecx,2' intruction is an integer multiply, in which the contents of register ecx is replaced by its original value (x00000084) multiplied by 2, for a product of x00000108. The answer is ECX = 00000108.