If a, b, c = 3, 4, 1 then what will be the value of math.sqrt(b)*a-c?
1 Like
5.0
Reason — The expression math.sqrt(b) * a - c evaluates to 2.0 * 3 - 1, which equals 6.0 - 1, resulting in 5.0.
math.sqrt(b) * a - c
Answered By
2 Likes
What is the output of math.ceil(4.4) ?
What will be the output on screen after executing: print(math.fabs(-6.4)) ?
What is the value of x, if x = math.factorial(0) ?
What is the value of x, if x = math.sqrt(25.0) ?