Q1. Which of the following is not the python module?
Q2. Write the output of the following statement.
import math
print(math.ceil(math.pi))
Q3. The following statement will import only "pi" module.(T/F)
Q4. Which of the following statement is/are correct for importing math module?
Q5. What type of error is returned by the following statement?
Q6. Which of the following constants are defined in math Module?
Q7. Which statement will return error?
import math #Statement 1
print(math.fabs(-9)) #Statement 2
print(fabs(-9)) #Statement 3
print(abs(-9)) #Statement 4
Q8. degree( ) function of math module converts value from radian to degree.(T/F)
Q9. Which of the following statement is converting 30 degree angle to radian?
Q10. Write the output of the following:
import math
print(math.sqrt(4*math.pow(4,3)))