Branching
Lecture 8: Branching
261 Questions205 MCQs51 Short Questions5 Long Questions
Showing 201 – 210 of 261 Questions
Page 21 of 27
Q201❓ MCQ📑 Lec 3Easy🔁Repeated⭐High-Yield💡Conceptual
An instruction that transfers control to a target label unconditionally, regardless of the state of processor flags, is called a(n) __________.
Q202❓ MCQ📑 Lec 3Easy🔁Repeated⭐High-Yield💡Conceptual
When comparing two values via 'CMP DEST, SRC', if the result of the subtraction (DEST - SRC) is zero, the Zero Flag is set (ZF = 1). What does this indicate about the operands?
Q203❓ MCQ📑 Lec 3Easy🔁Repeated⭐High-Yield💡Conceptual
When subtracting an unsigned source operand from an unsigned destination operand where DEST is smaller than SRC (DEST < SRC), a borrow is generated. Which flag is set?
Q204❓ MCQ📑 Lec 3Medium🔁Repeated⭐High-Yield💡Conceptual
After subtracting unsigned operands (CMP DEST, SRC), if the resulting flags satisfy 'ZF = 1 OR CF = 1', what relationship holds between DEST and SRC?
Q205❓ MCQ📑 Lec 3Medium🔁Repeated⭐High-Yield💡Conceptual
After subtracting unsigned operands (CMP DEST, SRC), if the resulting flags satisfy 'ZF = 0 AND CF = 0', what relationship holds between DEST and SRC?
Q206❓ MCQ📑 Lec 3Medium🔁Repeated⭐High-Yield💡Conceptual
After subtracting unsigned operands (CMP DEST, SRC), if the Carry Flag is cleared (CF = 0), what relationship holds between DEST and SRC?
Q207❓ MCQ📑 Lec 3Easy🔁Repeated⭐High-Yield💡Conceptual
Which conditional jump instruction is taken if the previous arithmetic/logic operation produced zero, or after a CMP instruction if both operands were equal?
Q208❓ MCQ📑 Lec 3Medium🔁Repeated⭐High-Yield💡Conceptual
Which conditional jump instruction is taken after a CMP instruction if the unsigned destination operand is below or equal to the unsigned source operand?
Q209❓ MCQ📑 Lec 3Easy🔁Repeated⭐High-Yield💡Conceptual
Numbers of arbitrary bit-width (e.g., 32-bit or 64-bit) can be added on a 16-bit processor using a proper combination of which instructions?
Q210❓ MCQ📑 Lec 3Easy🔁Repeated⭐High-Yield💡Conceptual
Analogous to multi-word addition with carry (ADC), which instruction is used to perform multi-word subtraction with borrow?