SarkariResultOutAdditional Assistant Engineer (Electrical) · 2026

Previous Year Question

Which 8051 instruction combines a conditional jump with a bit-clearing operation, jumping if the specified bit is set and then clearing that bit after the jump condition is checked?
  1. JB
  2. JNZ
  3. JC
  4. JBC

Correct answer: D

Explanation

JBC means Jump if Bit is set and Clear bit. If the addressed bit is 1, the 8051 clears it and branches to the target; if it is 0, execution continues without the jump.

Step-by-step solution

JBC Instruction explanatory diagram

Correct Answer

D — JBC

Explanation

JBC means Jump if Bit is set and Clear bit. If the addressed bit is 1, the 8051 clears it and branches to the target; if it is 0, execution continues without the jump.

Key Concept

JBC Instruction

Exam Point

JBC = Jump on Bit + Clear.

Exam tip

JBC = Jump on Bit + Clear.

Quick method

JBC = Jump on Bit + Clear.