Display Memory
Lecture 16: Display Memory
216 Questions192 MCQs19 Short Questions5 Long Questions
Showing 111 – 120 of 216 Questions
Page 12 of 22
Q111❓ MCQ📑 Lec 6Easy🔁Repeated⭐High-Yield💡Conceptual
When comparing unsigned destination and source operands (`CMP UDEST, USRC`), if the resulting flags satisfy `ZF = 1` OR `CF = 1`, what relationship exists between the operands?
Q112❓ MCQ📑 Lec 6Easy🔁Repeated⭐High-Yield💡Conceptual
When comparing unsigned destination and source operands (`CMP UDEST, USRC`), if the resulting flags satisfy `ZF = 0` AND `CF = 0`, what relationship exists between the operands?
Q113❓ MCQ📑 Lec 6Easy🔁Repeated⭐High-Yield💡Conceptual
When comparing unsigned destination and source operands (`CMP UDEST, USRC`), if the resulting Carry Flag is cleared (`CF = 0`), what relationship holds between the operands?
Q114❓ MCQ📑 Lec 6Easy🔁Repeated⭐High-Yield💡Conceptual
Which conditional jump instruction is taken if the last arithmetic operation produced a zero result (`ZF = 1`), or after a `CMP` instruction if both operands were equal?
Q115❓ MCQ📑 Lec 6Easy🔁Repeated⭐High-Yield💡Conceptual
Which conditional jump instruction is taken after a `CMP` instruction if the unsigned source operand is less than or equal to the unsigned destination operand (i.e., destination >= source)?
Q116❓ MCQ📑 Lec 6Easy🔁Repeated⭐High-Yield💡Conceptual
Numbers of arbitrary bit size (e.g. 32-bit, 64-bit, 128-bit) can be added on a 16-bit processor using a proper combination of which instructions?
Q117❓ MCQ📑 Lec 6Easy🔁Repeated⭐High-Yield💡Conceptual
Like addition with carry (`ADC`), which instruction is used to perform subtraction with borrow for multi-word numbers?
Q118❓ MCQ📑 Lec 6Easy🔁Repeated⭐High-Yield💡Conceptual
When executing the instruction `and ax, bx` on 16-bit registers, how many individual bitwise AND operations are performed simultaneously?
Q119❓ MCQ📑 Lec 6Easy🔁Repeated⭐High-Yield💡Conceptual
Which bitwise logical operation is primarily used to test or check whether specific individual bits of a number are set (`1`) or cleared (`0`) using a mask?
Q120❓ MCQ📑 Lec 6Easy🔁Repeated⭐High-Yield💡Conceptual
Which bitwise logical operation can be used as a selective masking operation to invert (toggle) specific target bits of a number while leaving other bits unchanged?