Write the output: i=2
while i < 10:
print (i * i)
i=i+1
Answers
Answered by
0
Answer:
it will print infinite 4
Answered by
0
Answer:
The computer will print 4.
Because i is initialised as 2. And condition is given that if i is less than 10, the print i * i.
After printing 4, i is set to 3. (2 + 1 = 3).
Similar questions