Branching
Lecture 8: Branching
261 Questions205 MCQs51 Short Questions5 Long Questions
Showing 131 – 140 of 261 Questions
Page 14 of 27
Q131❓ MCQ📑 Lec 3Easy🔁Repeated⭐High-Yield💡Conceptual
Executing the instruction `ADD AX, BX` performs which calculation?
Q132❓ MCQ📑 Lec 3Easy🔁Repeated⭐High-Yield💡Conceptual
In assembly language data definitions using the `db` (Define Byte) directive, what is the allocated memory size for each data element?
Q133❓ MCQ📑 Lec 3Easy🔁Repeated⭐High-Yield💡Conceptual
Consider the following x86 assembly code snippet:
```assembly
[org 0x0100]
mov ax, [num1] ; load first number in ax
mov bx, [num2] ; load second number in bx
add ax, bx ; _________________________________
int 0x21
num1: dw 5
num2: dw 10
```
What is the most appropriate inline code comment for line 4 (`add ax, bx`)?
Q134❓ MCQ📑 Lec 3Easy🔁Repeated⭐High-Yield💡Conceptual
Which of the following syntax declarations using the `db` directive validly defines character strings in assembly language?
Q135❓ MCQ📑 Lec 3Easy🔁Repeated⭐High-Yield💡Conceptual
When performing 16-bit division using `DIV reg16`, the instruction divides the 32-bit implied dividend in `DX:AX` by the 16-bit operand and stores the __________ quotient in register `AX`.
Q136❓ MCQ📑 Lec 3Easy🔁Repeated⭐High-Yield💡Conceptual
In x86 assembly language, division performed by the __________ instruction is integer division (truncating remainders) rather than floating-point division.
Q137❓ MCQ📑 Lec 3Easy🔁Repeated⭐High-Yield💡Conceptual
Which x86 instruction performs unsigned multiplication of a source operand with the implicit accumulator register (`AL` or `AX`)?
Q138❓ MCQ📑 Lec 3Easy🔁Repeated⭐High-Yield💡Conceptual
To reserve or define 8 bits (1 byte) of memory in assembly language, which data directive is used?
Q139❓ MCQ📑 Lec 3Easy🔁Repeated⭐High-Yield💡Conceptual
In the assembly instruction `mov ax, 5`, the literal constant `5` serves as the __________ operand.
Q140❓ MCQ📑 Lec 3Easy🔁Repeated⭐High-Yield💡Conceptual
When executing the 8-bit division instruction `DIV BL`, where must the 16-bit implied dividend be stored prior to execution?