- Home
- Output Questions for Class 10 ICSE Computer Applications
Determine how many times the body of the loop will be
Output Questions for Class 10 ICSE Computer Applications
Determine how many times the body of the loop will be executed and predict the output.
class dk4
{
public static void main(String args[])
{
int x=5,y=50;
while(x<=y)
{
y=y/x;
System.out.println(y);
}
}
}