Multiple choice

Which of the following conditional loops in x86 performs jump to the specified label if CX is not equal to zero while an equal condition exists?

  1. LOOPNE

  2. LOOPE

  3. LOOPZ

  4. LOOPNZ

  5. LOCK

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

LOOPE - LOOP while Equal This conditional loop in x86 performs jump to the specified label if CX is not equal to zero while an equal condition exists (ZF = 1).