1.
What is the output of the following Python code:
print(math.pow(3, 2))
2.
What is the output of the following Python code:
x = math.sqrt(4)
return x
3.
In Python, what is the following function used for:
math.sqrt(X, Y)
4.
What is the output of the following Python code:
math.fsum([.1
    for i in range(20)
])
5.
What is the output of the following Python code:
print sum([.1
    for i in range(20)
])
6.
What is the output of the following Python code:
math.isfinite(float('inf'))
7.
What is the output of the following Python code:
math.isfinite(float('nan'))
8.
What is the output of the following Python code:
x = math.isfinite(float('0.0'))
return x
9.
What is the output of the following Python code:
x = math.ldexp(0.5, 1)
return x
10.
What is the output of the following Python code:
math.modf(1.0)