Q.1.
What is the result of math.trunc(3.1)?
Q.2.
What is the output of print(math.trunc(‘3.1’))?
Q.3.
Which of the following is the same as math.exp(p)?
Q.4.
What is returned by math.expm1(p)?
Q.5.
What is the default base used when math.log(x) is found?
Q.6.
Which of the following aren’t defined in the math module?
Q.7.
What is returned by int(math.pow(2))?
Q.8.
What is output of print(math.pow(2))?
Q.9.
What is the value of x if x = math.sqrt(4)?
Q.10.
What does math.sqrt(X, Y) do?