Which filename refers to the physical address support program for accessing more than 4 GB of physical RAM?
a. Hal.dll
b. Ntkrnlpa.exe
c. BootSect.dos
d. Io.sys
ANSWER: b
Computer Science & Information Technology
You might also like to view...
What is the value of b after the following function call?
int b = 3; mystery (b); // function call void mystery (int &val) //function definition { for (int c = 0; c < 5; c++) val += 2; } a) 2 b) 3 c) 13 d) 15
Computer Science & Information Technology
Which of the following is true? Before you answer, define smaller in this context.
a. When class D is derived from class B, the base class is usually smaller. b. A subclass is usually smaller than the superclass. c. A parent class is usually larger than a child class. d. A class that inherits is usually larger than the class from which it inherits.
Computer Science & Information Technology