insmod tries to link a module into the running kernel by resolving all symbols obtained from:
A.
the kernel’s exported symbol table.
B.
the kernel’s internal pointer base.
C.
the user command argument list.
D.
None of the choices
Explanation:
insmod installs a loadable module in the running kernel. It tries to link a module into the running kernel by resolving all symbols from the kernel’s exported symbol
table.