How many number of times will the loop mentioned below be executed? int x=5;int y=30;while(x<=y){ x=y/x; y=y-10;}
Reveal answer
Fill a bubble to check yourself
How many number of times will the loop mentioned below be executed? int x=5;int y=30;while(x<=y){ x=y/x; y=y-10;}