Answer
Method 1:
LOAD X
ADD TWO
Method 2:
INCREMENT X
INCREMENT X
Work Step by Step
The first sequence of instructions is:
LOAD X
ADD TWO
This loads the value of X into a register and then adds the value at the label TWO (which is 2) to it.
The second sequence of instructions is:
INCREMENT X
INCREMENT X
This increments the value of X twice directly in memory.