Multiple choice assembly What is the value of over flow (O) flag after the instruction: SUB AX,AX Set Cleared Unknown none of the above Reveal answer Fill a bubble to check yourself B Correct answer Explanation The instruction 'SUB AX, AX' performs a subtraction of a register from itself (AX - AX), which always results in zero. Since 0 - 0 does not cause an arithmetic overflow (the result fits in the destination), the Overflow (O) flag is cleared (0).