Q. In python, what is the correct method to load a module?
β
Correct Answer: (B)
import math
Explanation: To use functions of a module, you must import the module with the “import” instruction.