Question: QUESTION 1 ` ` ` num _ sum = 0 count = 0 while ( count 1 0 ) : num _ sum = num

QUESTION 1
```
num_sum =0
count =0
while(count10):
num_sum = num_sum + count
count = count +1
if count==5:
break
print(count)
print(num_sum)
```
When you run this program, what's results that are printed out?
A.1045
B.1010
C.510
D.545
QUESTION 1 ` ` ` num _ sum = 0 count = 0 while (

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!