InterviewSolution
Saved Bookmarks
| 1. |
How many times does the following code segment executeint x=1, y=10, z=1; do{y-- X++; y-=2; y=z; Z++} while (y>1 && z |
| Answer» INFINITE because it is infinite is CORRECT | |