If a, b, c = 3, 4, 1 then what will be the value of math.sqrt(b)*a-c?
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