Q. What is the output of the following program? from math import *a = 2.13b = 3.7777c = -3.12print(int(a), floor(b), ceil(c), fabs(c)) (Solved)
1. 2 3 -4 3
2. 2 3 -3 3.12
3. 2 4 -3 3
4. 2 3 -4 3.12
- b. 2 3 -3 3.12
1. 2 3 -4 3
2. 2 3 -3 3.12
3. 2 4 -3 3
4. 2 3 -4 3.12