Jede Frage dieses Quiz ist zeitlich begrenzt. Drücke auf die Schaltfläche um das Quiz zu starten.
Which module allows us to use math functions in Python ?
math
maths
mathematics
Math
What is the function of ceil( ) ?
returns next integer value after the floating number
returns previous integer value before the floating number
returns any integer nearest to the floating number
returns the same floating number
What is the function of floor( ) ?
returns the next integer of the floating number
returns the previous integer of the floating number
returns the floating point number + 1
no such function is there
import math
x, y = 6, 4 print(math.fmod(x, y))
What is the output ?
2
1.5
1
0
exp(x) returns the exponent value of x.
Which function is used to find x to the power y value ?
exp(x, y)
pow(x, y)
power(x, y)
exponent(x, y)
Which mathematical constant is used to get the value 3.142857143
math.pi
math.pie
math.e
math.p
math.exp is used to get the value of e.