Math Module Quiz – 2 Share with others Enter details and click on Next Name Email School Name Q11. Write the output of the following code : import mathprint (math.sqrt(0)) 0 0.0 Error None Q12. The extension of module is ________ .py .pym .pyd None Q13. Write the output of the following code : import mathprint (math.sin(0)) 0.0 1 Error None Q14. Write the output of the following code : import mathprint (math.pow(2,0)) 0 0.0 1 1.0 None Q15. Write the output of the following code : import mathprint (math.ceil(20.356)-math.floor(27.356)) -7 -6 7 Error None Q16. Write the output of the following code : import mathprint (math.ceil(20.356)*2//5) 8 8.4 0 None Q17. Write the output of the following code : import mathprint (math.ceil(20.356,2)) Error 20.36 20.40 20.30 None Q18. Write the output of the following code : import mathL = [1,4,9]for i in L:print (math.sqrt(i)) 123 1.02.03.0 Error None Q19. Write the output of the following code : import mathL1 = [1,4,9]L2=[1,2,3]for i in range(len(L1)):print (math.pow(L1[i],L2[i])) 149 123 1.016.0729.0 Error None Q20. Which function returns the smallest integer value greater than the given floating point number? ceil( ) floor( ) pow( ) No Such Function None Time's upTime is Up! Related Share with others Leave a ReplyCancel reply