Display Memory

Lecture 16: Display Memory

216 Questions192 MCQs19 Short Questions5 Long Questions
Showing 141150 of 216 Questions
Page 15 of 22
Q141📝 Short Q📑 Lec 6Medium🔁RepeatedHigh-Yield💡Conceptual
Explain how two-dimensional text mode screen coordinates (80 columns by 25 rows) are linearly mapped into one-dimensional video RAM, detailing the word-per-character memory structure.
💻 assembly Snippet
mov ax, 0xB800
mov es, ax
mov di, (5 * 80 + 10) * 2
mov word [es:di], 0x0741
Q142📝 Short Q📑 Lec 6Easy🔁RepeatedHigh-Yield💡Conceptual
State the three fundamental principles that govern how the CPU interacts with the VGA video controller in text display mode.
Q143🧠 Long Problem📑 Lec 6Medium🔁RepeatedHigh-Yield
Describe the three equivalent syntax methods used in NASM assembly language to declare single characters and contiguous character strings in memory.
💻 assembly Snippet
char1: db 65
char2: db 'A'
string1: db 'Hello World', 0
Q144❓ MCQ📑 Lec 6Medium🔁RepeatedHigh-Yield💡Conceptual
In VGA text mode display memory, which bit of the 8-bit attribute byte represents the Red component of the foreground color?
💻 assembly Snippet
mov byte [es:di+1], 0x04
  1. A.Bit 5
  2. B.Bit 4
  3. C.Bit 3
  4. D.Bit 2
Q145❓ MCQ📑 Lec 6EasyHigh-Yield💡Conceptual
How many bytes of storage memory are required to store a single character matrix in an 8x16 VGA font?
  1. A.2 bytes
  2. B.4 bytes
  3. C.8 bytes
  4. D.16 bytes
Q146❓ MCQ📑 Lec 6Easy🔁RepeatedHigh-Yield💡Conceptual
Which primary video display mode is utilized by default by the MS-DOS operating system command line interface?
  1. A.Character-based mode (Text mode)
  2. B.Graphics-based mode
  3. C.Numeric-based mode
  4. D.Console bitmap mode
Q147❓ MCQ📑 Lec 6Easy🔁RepeatedHigh-Yield💡Conceptual
How many bytes of storage memory are required to store a single character bitmap glyph in an 8x16 font?
  1. A.2 bytes
  2. B.4 bytes
  3. C.8 bytes
  4. D.16 bytes
Q148❓ MCQ📑 Lec 6Easy🔁RepeatedHigh-Yield💡Conceptual
In PC BIOS architecture, into how many broad categories are video display services categorized?
  1. A.2 categories
  2. B.3 categories
  3. C.4 categories
  4. D.5 categories
Q149❓ MCQ📑 Lec 6Easy🔁RepeatedHigh-Yield💡Conceptual
How many bytes of storage memory are required to store an 8x16 VGA font character matrix in chargen memory?
  1. A.3 bytes
  2. B.4 bytes
  3. C.8 bytes
  4. D.16 bytes
Q150❓ MCQ📑 Lec 6Easy🔁RepeatedHigh-Yield💡Conceptual
In VGA text mode video memory, what does the byte stored at the higher memory address (+1 byte offset) of a screen location word represent?
💻 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