3. |
What is the benefit of demand-loading modules?
Please select the best answer.
|
|
A. |
To prevent the user from building a monolithic kernel.
|
|
B. |
To keep the administrator from configuring modules. |
|
C. |
To isolate all module functionality into a single kernel thread, kmod.
|
|
D.
|
To provide a module's functionality as soon as it's needed and not before.
|
|
The correct answer is D.
The benefit of demand-loading modules is that they provide a module's functionality only when demanded.
A is incorrect because demand loading does not prevent the user from building a monolithic kernel. B is incorrect because the administrator should configure the modules for proper operation, and demand loading does not affect module configuration.
C is incorrect because the demand loading does not isolate all module functionality into kmod.
|