Math Module in Python MCQs Exercise I

Ques 1 Math Module


Which of the following does not come under the math module?

A ceil()
B floor()
C sqrt()
D round()

Ques 2 Math Module


Which of the following is the correct order of return type of a given function?
    ceil(),pi(),floor(),sqrt()

A integer,integer,integer,integer
B integer,float,float,integer
C integer,float,integer,float
D float,float,float,float

Ques 3 Math Module


What is the output of the following Python Code?


import math
def area(radius):
    return math.pi()*radius*radius
print(area(10))

A 314.61
B 3.14
C Error
D 316.3421