Display Memory
Lecture 16: Display Memory
216 Questions192 MCQs19 Short Questions5 Long Questions
Showing 81 – 90 of 216 Questions
Page 9 of 22
Q81❓ MCQ📑 Lec 6Easy🔁Repeated⭐High-Yield💡Conceptual
When comparing two operands (`CMP DEST, SRC`), if the result sets the Zero Flag (`ZF = 1`), what does this indicate about the operands?
Q82❓ MCQ📑 Lec 6Easy🔁Repeated⭐High-Yield💡Conceptual
True or False: In x86 assembly language, `SHL` (Shift Logical Left) and `SAL` (Shift Arithmetic Left) are identical in operation and assemble to the exact same machine opcodes.
Q83❓ MCQ📑 Lec 6Easy🔁Repeated⭐High-Yield💡Conceptual
True or False: The `JA` (Jump if Above) instruction CANNOT be taken after a `CMP` instruction if the unsigned destination operand is greater than the source operand.
Q84❓ MCQ📑 Lec 6Easy🔁Repeated⭐High-Yield💡Conceptual
In 8088/8086 assembly language architecture, conditional jump instructions (such as `JZ`, `JNZ`, `JC`, `JNC`) can perform only which type of jump?
Q85❓ MCQ📑 Lec 6Easy🔁Repeated⭐High-Yield💡Conceptual
True or False: In 8088/8086 assembly language, a Near Jump allows transferring execution to any target offset within the same 64 KB code segment.
Q86❓ MCQ📑 Lec 6Easy🔁Repeated⭐High-Yield💡Conceptual
In 8088/8086 assembly language architecture, conditional jump instructions (such as `JZ`, `JNZ`, `JC`, `JNC`) are restricted to which type of branch displacement?
Q87❓ MCQ📑 Lec 6Medium🔁Repeated⭐High-Yield💡Conceptual
If register `AX` contains decimal `-2` (`0xFFFE`) and register `BX` contains decimal `2` (`0x0002`), what occurs upon executing `CMP AX, BX` followed by `JA label`?
Q88❓ MCQ📑 Lec 6Easy🔁Repeated⭐High-Yield💡Conceptual
How many explicit operands does the `ADC` (Add with Carry) instruction accept in x86 assembly language?
Q89📝 Short Q📑 Lec 6Easy🔁Repeated⭐High-Yield💡Conceptual
Explain the difference between `SHR` (Shift Logical Right) and `SAR` (Shift Arithmetic Right) instructions in x86 assembly language.
Q90📝 Short Q📑 Lec 6Easy🔁Repeated⭐High-Yield💡Conceptual
In x86 assembly language, explain the operation and mechanics of the `ADC` (Add with Carry) instruction, and how it is used for multi-word addition.