Display Memory

Lecture 16: Display Memory

216 Questions192 MCQs19 Short Questions5 Long Questions
Showing 161170 of 216 Questions
Page 17 of 22
Q161❓ MCQ📑 Lec 6Medium🔁RepeatedHigh-Yield💡Conceptual
At which screen location will the instruction 'MOV WORD [ES:160], 0x1230' display character '0' in standard 80x25 VGA text mode?
💻 assembly Snippet
mov word [es:160], 0x1230
  1. A.Second column of first row
  2. B.First column of second row
  3. C.Second column of second row
  4. D.First column of third row
Q162❓ MCQ📑 Lec 6Medium🔁RepeatedHigh-Yield💡Conceptual
In a standard VGA text mode attribute byte, which bit index controls the Red component of the background color?
  1. A.Bit 3
  2. B.Bit 4
  3. C.Bit 5
  4. D.Bit 6
Q163❓ MCQ📑 Lec 6Medium🔁RepeatedHigh-Yield💡Conceptual
In a standard VGA text mode attribute byte, which bit index controls the Blue component of the foreground color?
  1. A.Bit 0
  2. B.Bit 1
  3. C.Bit 2
  4. D.Bit 3
Q164❓ MCQ📑 Lec 6Easy🔁RepeatedHigh-Yield💡Conceptual
What 16-bit word value is written to every video memory cell during a standard clear screen routine in VGA text mode?
💻 assembly Snippet
mov ax, 0x0720
rep stosw
  1. A.0x0417
  2. B.0x0714
  3. C.0x0741
  4. D.0x0720
Q165❓ MCQ📑 Lec 6Easy🔁RepeatedHigh-Yield💡Conceptual
In VGA text mode, how many bytes of video/ROM memory are required to store a single 8x16 matrix font character pattern?
  1. A.3 bytes
  2. B.4 bytes
  3. C.8 bytes
  4. D.16 bytes
Q166❓ MCQ📑 Lec 6Easy🔁RepeatedHigh-Yield💡Conceptual
In VGA text mode memory layout, within the 16-bit word designated for one screen character location, what is stored at the higher memory address (odd byte offset)?
💻 assembly Snippet
mov word [es:0], 0x0741
  1. A.The character code
  2. B.The attribute byte
  3. C.The parameters
  4. D.The dimensions
Q167❓ MCQ📑 Lec 6Easy🔁RepeatedHigh-Yield💡Conceptual
Which of the following sets of assembly instructions correctly initializes segment register ES to access color VGA text mode video memory?
💻 assembly Snippet
mov ax, 0xb800
mov es, ax
  1. A.MOV AX, 0xB008 MOV ES, AX
  2. B.MOV AX, 0xB800 MOV ES, AX
  3. C.MOV AX, 0x8B00 MOV ES, AX
  4. D.MOV AX, 0x800B MOV ES, AX
Q168❓ MCQ📑 Lec 6Easy🔁RepeatedHigh-Yield💡Conceptual
In VGA text mode video memory, how many bytes of RAM correspond to a single screen character cell location?
  1. A.One byte
  2. B.Two bytes
  3. C.Four bytes
  4. D.Eight bytes
Q169❓ MCQ📑 Lec 6Medium🔁RepeatedHigh-Yield💡Conceptual
Executing the instruction 'MOV WORD [ES:0], 0x0741' prints character 'A' on the screen. What is the resulting background color of the character cell?
💻 assembly Snippet
mov word [es:0], 0x0741
  1. A.Black
  2. B.Blue
  3. C.Green
  4. D.Red
Q170❓ MCQ📑 Lec 6Easy🔁RepeatedHigh-Yield💡Conceptual
How many bytes of memory are required to store a single 8x16 font character matrix bitmap?
  1. A.2 bytes
  2. B.4 bytes
  3. C.8 bytes
  4. D.16 bytes