Question: 1. Hand trace the code below and write the output in the output box. nums Code [3, 4, -8, 17] index = 0 sum
1. Hand trace the code below and write the output in the output box. nums Code [3, 4, -8, 17] index = 0 sum = 0 while index < len(nums): sum = sum + nums[index] index += 1 print(sum) Hand trace table Output
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
