logo

Crowdly

Match each chunk of code with the correct output #chunk 1 i = 1 while (i < 5)...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

Match each chunk of code with the correct output

#chunk 1

i = 1

while (i < 5):

    print(i,end=' ')

    i = i + 1

#chunk 2

i = 0

while (i <= 5):

    print(i,end=' ')

    i = i + 1

#chunk 3

i = 0

while (i <= 5):

    i = i + 1   

    print(i,end=' ')

#chunk 4

i = 0

while (i < 5):

    i = i + 1

    print(i,end=' ')

More questions like this

Want instant access to all verified answers on learn2025.ukzn.ac.za?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!