- Home
- Output Questions for Class 10 ICSE Computer Applications
Predict the output and the number of times the loop runs:
Output Questions for Class 10 ICSE Computer Applications
Predict the output and the number of times the loop runs:
class Test {
public static void main(String args[]) {
int i;
for(i=0;i<5;i++)
System.out.println(i-i*i);
}
}