Python Test 8 - Math What is returned by math.ceil(3.4)?3.0434.0 What is the value returned by math.floor(3.4)?4.03.043 What will be the output of print(math.copysign(3, -1))?-3.0-31.01 What is displayed on executing print(math.fabs(-3.4))?3.4-3.43-3 Is the output of the function abs() the same as that of the function math.fabs()?neveralwayssometimesnone of the mentioned What is the value returned by math.fact(6)?720error6[1, 2, 3, 6] What is the value of x if x = math.factorial(0)?none of the mentionederror01 What is math.factorial(4.0)?124none of the mentionederror What will be the output of print(math.factorial(4.5))?2424.0120error What is math.floor(0o10)?08910 Schreibe einen Kommentar Antworten abbrechenDu musst angemeldet sein, um einen Kommentar abzugeben.