✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What does the following print to the console.
sum = 0
counter = 0
numbers = [1, 2, 3, 4]
while counter < len(numbers):
sum = sum + numbers[counter]
counter = counter + 1
print(sum)
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!