9**(1/2) Please solve this | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

9**(1/2) Please solve this

4th Jan 2017, 8:49 PM
Ali Zain
Ali Zain - avatar
10 Answers
+ 10
9**(1/2)==3 16**(1/2)==4 25**(1/2)==5 ...........
4th Jan 2017, 8:51 PM
Valen.H. ~
Valen.H. ~ - avatar
+ 9
number at power of 1/2 is square root of number.
4th Jan 2017, 8:50 PM
Valen.H. ~
Valen.H. ~ - avatar
+ 6
3.
4th Jan 2017, 8:49 PM
Valen.H. ~
Valen.H. ~ - avatar
+ 5
** is the exponentiation operator. a**b returns the value of a to the power of b. So, 9**(1/2) returns 9 to the power of 1/2 i.e. 9 to the power of 0.5 which is 3.
5th Jan 2017, 2:56 PM
Krishna Teja Yeluripati
Krishna Teja Yeluripati - avatar
+ 3
in python2: 1/2==0 9**(1/2)=9**0=1 1.0/2==1/2.0=0.5 9**(1.0/2)==9**0.5=3 in python3: 1/2==0.5 9**(1/2)==3
4th Jan 2017, 9:17 PM
DFX
DFX - avatar
+ 2
Could you not just try it?
5th Jan 2017, 12:12 AM
Alan Harrison
Alan Harrison - avatar
0
with briefly
4th Jan 2017, 8:50 PM
Ali Zain
Ali Zain - avatar
0
Thanks
4th Jan 2017, 8:54 PM
Ali Zain
Ali Zain - avatar
0
3
5th Jan 2017, 1:58 AM
Neeraj Singh Bhandari
Neeraj Singh Bhandari - avatar
0
3?
5th Jan 2017, 2:31 AM
Dat Boi
Dat Boi - avatar