आउटपुट क्या है?
What is the output ?
def calc(x):
r=2*x**2
return r
print(calc(5))
A)
B)
C)
D)
Explanation:
Sure!
The function calculates 2 * x**2
.
For x = 5
:
5**2 = 25
2 * 25 = 50
So, the output is 50.
Answer: (B) 50.