यदि a, b, c = 3, 4, 1 है तो Math.sqrt(b)*a-c का मान क्या होगा?
If a, b, c = 3, 4, 1 then what will be the value of math.sqrt(b)*a-c?
A)
B)
C)
D)
Explanation:
Let's break down the expression math.sqrt(b) * a - c
step by step, where a = 3
, b = 4
, and c = 1
:
-
math.sqrt(b):
math.sqrt(4)
will give the square root of4
, which is2.0
. -
Multiply by
a
:2.0 * 3 = 6.0
-
Subtract
c
:6.0 - 1 = 5.0
So, the value of math.sqrt(b) * a - c
is 5.0
.
Answer: (A) 5.0