✅ 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 = 1while (i < 5): print(i,end=' ') i = i + 1
#chunk 2
i = 0while (i <= 5): print(i,end=' ') i = i + 1
#chunk 3
i = 0while (i <= 5): i = i + 1 print(i,end=' ')
#chunk 4
i = 0while (i < 5): i = i + 1 print(i,end=' ')
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!