This blog helps you to learn basics to high level Python programming practicals.
num = 1 while num < 5: print(num, end=" ") num = num + 1 A. 1 2 3 4 B. 1 2 3 4 5 C. 1 3 5 D. none of these
A. 1 3 4 B. 1 2 C. 1 2 3 4 5 D. none of these
A. 1 2 3 4 B. 1 2 C. 3 4 5 D. Syntax error
A. 1 2 3 4 'num' is now out of range. B. 1 2 3 4 C. 'num' is now out of range. D. none of these
A. infinite loop B. 1 2 3 4 5 C. 2 3 4 5 D. Syntax error
No comments:
Post a Comment