NEW
Font size
WorksheetsPython Math
Total questions: 10
Worksheet time: 5mins
What is the displayed value for Python coding below:
print(min(100, 200, 300, 400))
100
200
300
400
What is the displayed value for Python coding below:
print(max(100, 200, 300, 400))
100
200
300
400
What is the displayed value for Python coding below:
print(abs(-7.25))
7.25
-7.25
+7.25
+7.25-
What is the displayed value for Python coding below:
print(pow(8, 3))
6561
6424
64
24
What is the displayed value for Python coding below:
print(math.pi)
3.141592653589793
3.142
31.41592653589793
π
What is the displayed value for Python coding below:
print(math.ceil(2.6))
3
2
2.5
3.5
What is the displayed value for Python coding below:
print(math.floor(2.6))
3
2
2.5
3.5
What is the displayed value for Python coding below:
print(min(-100, -200, 100, 200))
-100
-200
100
200
What is the displayed value for Python coding below:
print(max(-100, -200, +100, +200))
+100
+200
100
200
What is the displayed value for Python coding below:
print(pow(2, 2))
4
8
2
16
