Q11. Write the output of the following code :
import math
print (math.sqrt(0))
Q12. The extension of module is ________
Q13. Write the output of the following code :
import math
print (math.sin(0))
Q14. Write the output of the following code :
import math
print (math.pow(2,0))
Q15. Write the output of the following code :
import math
print (math.ceil(20.356)-math.floor(27.356))
Q16. Write the output of the following code :
import math
print (math.ceil(20.356)*2//5)
Q17. Write the output of the following code :
import math
print (math.ceil(20.356,2))
Q18. Write the output of the following code :
import math
L = [1,4,9]
for i in L:
print (math.sqrt(i))
Q19. Write the output of the following code :
import math
L1 = [1,4,9]
L2=[1,2,3]
for i in range(len(L1)):
print (math.pow(L1[i],L2[i]))
Q20. Which function returns the smallest integer value greater than the given floating point number?