Correct Answer - Option 3 : at the memory address IF00
Let the two bytes for addition are 02H that is stored at 1FFE and 03H that is stored at 1FFF
Now,
LXI H, 1FFE (H ← 1F, L ← FE)
MOV B, M (B ← 02 H)
INR L (H ← 1F, L ← FF)
MOV A, M (A ← 03 H)
ADD B ( A ← 03H + 02H = 05H)
INR L (H ← 1F, L ← 00)
MOV M, A (1FOO ← 05H)
XOR A (A ← 00H)
The result of the addition is thus stored in at the memory location 1F00