- Home
- Output Questions for Class 10 ICSE Computer Applications
Analyze the following program segment and determine how many
Output Questions for Class 10 ICSE Computer Applications
Analyze the following program segment and determine how many times the body of the loop will be executed (show the working).
x = 5; y = 50;
while(x<=y)
{
y = y / x;
System.out.println(y);
}