Login
Remember
Register
Ask a Question
What is the output of the following?
0
votes
asked
Jun 13, 2019
in
Python
by
Derya
What is the output of the following?
i = 1
while False:
if i%2 == 0:
break
print(i)
i += 2
a. 1
b. none of the mentioned
c. 1 2 3 4 …
d. 1 3 5 7 …
#python
#ball-python
#java
#python-tutorial
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Oct 31, 2019
by
Robin
Answer is D
...