I can't understand Exponentiation. What does that two multiplication signs ** means ? Please help ! | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

I can't understand Exponentiation. What does that two multiplication signs ** means ? Please help !

27th Mar 2018, 4:18 PM
Advait
3 Answers
+ 2
n**2 = n^2 = n squared. var n = 2; n**2 = 4. var n = 6; n**2 = 36. n**3 = n^3 = n cubed. var n = 2; n**3 = 8. var n = 6 n**3 = 216.
27th Mar 2018, 4:33 PM
Adam
Adam - avatar
0
thanks. I will try
27th Mar 2018, 4:47 PM
Advait