Math Module in Python MCQs Exercise II

Ques 1 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 3140.1592653589793
B 31.415
C Error
D 314.1592653589793