InterviewSolution
Saved Bookmarks
| 1. |
How many times is the following loop executed?i = 100while (i<=200):print ii + =20 |
|
Answer» 6 times is the while loop executed. |
|