Ques 1 Math Module
Which of the following does not come under the math module?
Ques 2 Math Module
Which of the following is the correct order of return type of a given function?
ceil(),pi(),floor(),sqrt()
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))