✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Match the chunk of code to the correct output
#Code chunk1
sum = 0
while sum <15:
sum += 3
if sum % 2 == 0:
print("",end="")
else:
print(sum, end= " ")
#Code chunk2
sum = 0
while sum < 15:
sum += 3
print(sum,end=" ")
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!