Q.1.
What is returned by math.ceil(3.4)?
Q.2.
What is the value returned by math.floor(3.4)?
Q.3.
What will be the output of print(math.copysign(-1))?
Q.4.
What is displayed on executing print(math.fabs(-3.4))?
Q.5.
Is the output of the function abs() the same as that of the function math.fabs()?
Q.6.
What is the value returned by math.fact(6)?
Q.7.
What is the value of x if x = math.factorial(0)?
Q.8.
What is math.factorial(4.0)?
Q.9.
What will be the output of print(math.factorial(4.5))?
Q.10.
What is math.floor(0o10)?