+ 2
What is the output of this code??
Print (2**1**4**2)
5 Réponses
+ 3
The exponentiation is performed right-to left.
2**1**4**2 is actually
2**(1**(4**2))
= 2**(1**16)
= 2**1
= 2
+ 2
Oh I understand this point now
Thank u so much
+ 1
How to get this result is 2
0
You're welcome, roza alandalib 😊
0
First write this program properly and it's output will be 2.