Branching
Lecture 8: Branching
261 Questions205 MCQs51 Short Questions5 Long Questions
Showing 171 – 180 of 261 Questions
Page 18 of 27
Q171❓ MCQ📑 Lec 3Easy🔁Repeated⭐High-Yield💡Conceptual
In x86 assembly language, what is the actual distinction between the jump mnemonics JNE (Jump if Not Equal) and JNZ (Jump if Not Zero)?
Q172❓ MCQ📑 Lec 3Easy🔁Repeated⭐High-Yield💡Conceptual
Which type of jump instruction always transfers program execution to the target memory address regardless of processor flag states?
Q173❓ MCQ📑 Lec 3Easy🔁Repeated⭐High-Yield💡Conceptual
When subtracting the source operand from the destination operand (DEST - SRC), the Zero Flag is set (ZF = 1). What does this indicate regarding the operands?
Q174❓ MCQ📑 Lec 3Easy🔁Repeated⭐High-Yield💡Conceptual
When subtracting an unsigned source operand from an unsigned destination operand (DEST - SRC) where the destination is smaller than the source, a borrow occurs. Which flag state results?
Q175❓ MCQ📑 Lec 3Medium🔁Repeated⭐High-Yield💡Conceptual
In unsigned comparison via subtraction (DEST - SRC), if the resulting flag state satisfies ZF = 1 OR CF = 1, what is the mathematical relationship between the unsigned destination (UDEST) and unsigned source (USRC)?
Q176❓ MCQ📑 Lec 3Medium🔁Repeated⭐High-Yield💡Conceptual
In unsigned comparison via subtraction (DEST - SRC), if the resulting flag state satisfies ZF = 0 AND CF = 0, what is the mathematical relationship between the unsigned destination (UDEST) and unsigned source (USRC)?
Q177❓ MCQ📑 Lec 3Medium🔁Repeated⭐High-Yield💡Conceptual
In unsigned comparison via subtraction (DEST - SRC), if the resulting Carry Flag is clear (CF = 0), what is the mathematical relationship between the unsigned destination (UDEST) and unsigned source (USRC)?
Q178❓ MCQ📑 Lec 3Easy🔁Repeated⭐High-Yield💡Conceptual
Which conditional jump instruction is executed if a preceding arithmetic operation evaluates to zero, or if a CMP instruction determines that both operands are equal?
Q179❓ MCQ📑 Lec 3Medium🔁Repeated⭐High-Yield💡Conceptual
Which conditional jump instruction is taken after a CMP instruction if the unsigned destination operand is smaller than or equal to the unsigned source operand?
Q180❓ MCQ📑 Lec 3Easy🔁Repeated⭐High-Yield💡Conceptual
Numbers of arbitrary bit-width can be added in assembly language using a proper combination of which instructions?