Login
Remember
Register
Ask a Question
Read the Following program:
+1
vote
asked
Jan 19, 2021
in
Python
by
SakshiSharma
Read the Following program:
a = 1
while True:
if a % 7 = = 0:
break
print(i)
a += 1
Which of the following is correct output of this program?
i) 1 2 3 4 5
ii) 1 2 3 4 5 6
iii) 1 2 3 4 5 6 7
iv) Invalid syntax
#python-output
#error
Python-questions-answers
Please
log in
or
register
to answer this question.
0
Answers
...