0
Why the output of this code is 32
Byte = 1 For c in range(5): Byte*=2 Print(byte)
1 Respuesta
+ 10
It basically multiplies byte with 2 in each occuring loop which will happen 5 times
Byte = 1
So Byte *2*2*2*2*2
Which is 32
Byte = 1 For c in range(5): Byte*=2 Print(byte)