2**5 | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

2**5

How?i still do not know,:-! ? ????

15th Apr 2019, 7:49 AM
Abdullah al Nabid
Abdullah al Nabid - avatar
3 Answers
+ 4
It works like exponenting in maths. 2**2 is 2² in maths. 2**2 = 2*2 = 4 2**3 = 2*2*2 = 8 2**4 = 2*2*2*2 = 16 There is also a pow function to perform the same task. pow(3, 2) = 3**2 = 3*3 = 9 pow(3, 3) = 3**3 = 3*3*3 = 27 pow(3, 4) = 3**4 = 3*3*3*3 = 81 Exponenting also includes 3 special cases, which I won't mention to not confuse from the most important basics.
15th Apr 2019, 8:11 AM
Seb TheS
Seb TheS - avatar
+ 3
2*2*2*2*2
15th Apr 2019, 7:50 AM
HonFu
HonFu - avatar
+ 2
1. 2. 3. 4. 5. (2*2=4*2=8*2=16*2=32) ==2**5
15th Apr 2019, 7:56 PM
Smith Welder
Smith Welder - avatar