Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What is the value of the output in the following script?
x, n = 128, 0while x>1: x = x/2 n = n + 1print(n)
x, n = 128, 0
while x>1:
x = x/2
n = n + 1
print(n)
6
7
8
5
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!