Question
1. If the debug button (red bug) is clicked for this program in Wing, and then the step over button is clicked, what will be
1. If the debug button (red bug) is clicked for this program in Wing, and then the step over button is clicked, what will be the line number of the next line of code the debugger will highlight to be executed?
Provide your answer as the line number only using the line numbers displayed on the left side of the image.
2. If the debug button (red bug) is clicked for this program in Wing, and then the step into button is clicked, what will be the line number of the next line of code the debugger will highlight to be executed? Provide your answer as the line number only using the line numbers displayed on the left side of the image.
II III 1 def sum(n:int) -> int: 2 3 sums of the values from 1 to n inclusive and returns sum 4 Precondition: n>0 5 >>> sum(1) 6 1 7 >>> sum(4) 8 10 9 10 sum = 0 11 for num in range(1, n+1): 12 sum += num 13 return sum 14 15 def print_sum(num:int) -> None: 16 17 sums the values 1 to n and prints message to the screen 18 >>> print_sum(1) 19 sum of 1 to 1 : 1 20 >>> print_sum(5) 21 sum of 1 to 5 : 15 22 23 if num int: 2 3 sums of the values from 1 to n inclusive and returns sum 4 Precondition: n>0 5 >>> sum(1) 6 1 7 >>> sum(4) 8 10 9 10 sum = 0 11 for num in range(1, n+1): 12 sum += num 13 return sum 14 15 def print_sum(num:int) -> None: 16 17 sums the values 1 to n and prints message to the screen 18 >>> print_sum(1) 19 sum of 1 to 1 : 1 20 >>> print_sum(5) 21 sum of 1 to 5 : 15 22 23 if num
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started