Q. Show the conditional jump in program?
CMP    AX, BX                      ; compare instruction: sets flags
JNE     FIX                             ; if not equal do addition 
JMP     THERE                       ; if equal skip next instruction 
FIX:    ADD AX, 02              ; add 02 to AX
THERE:  MOV CL, 07  
The above code isn't efficient however suggest that there are numerous ways through which a conditional jump can be implemented. Select the most optimum way.