📚 Practice Mode

C Programming: Loops and Control Structures

Learn at your own pace with hints and detailed explanations

1 / 15
Multiple Choice

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;}

  1. 1 time
  2. 2 time
  3. 3 time
  4. 4 time
  5. 5 time