Saved Bookmarks
| 1. |
How many times the following loop get executed?int x = 5, y = 36; while (x<=y){ X+=6;} |
|
Answer» The loop will execute 6 times. |
|