+ 2
print (9**(1/2)), OUTPUT= 3, how?
explain how output is 3 !
6 Respuestas
+ 4
9**(1/2) means that, 9 to the power 1/2 , which is also the square root of 9 which is 3.0
+ 2
9**0.5 == 9/2
+ 2
0.5==1/2
2==4/2
9**2==(9*4)/2==18
9**0.5==(9*1)/2==3
+ 1
your third line didn't understand !
+ 1
Thanks,but not satisfied !
+ 1
9**(1/2) it means 9 to the power 1/2
9 can be written as 3**2 .
9**(1/2) = 3**(2*1/2 ) so 2 gets cancelled .so ans is 3