Previous Year Question
Identify the correct instruction type of 'CJNE A, #25H, NEXT' in an 8051 microcontroller.
Correct answer: C
Explanation
CJNE means Compare and Jump if Not Equal. It compares the accumulator with the immediate value and branches to NEXT when they are unequal, so it is a conditional jump instruction.
Step-by-step solution

Correct Answer
C — Conditional jump instruction
Explanation
CJNE means Compare and Jump if Not Equal. It compares the accumulator with the immediate value and branches to NEXT when they are unequal, so it is a conditional jump instruction.
Key Concept
CJNE Instruction
Exam Point
CJNE = Compare + Jump if Not Equal.
Exam tip
CJNE = Compare + Jump if Not Equal.
Quick method
CJNE = Compare + Jump if Not Equal.