KnowledgeBoat Logo

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

Java

Java Conditional Stmts

ICSE

47 Likes

Answer

0
0
-2
-6
-12

Loop executes 5 times

Working

iOutput
00
11 - 1 * 1 = 0
22 - 2 * 2 = -2
33 - 3 * 3 = -6
44 - 4 * 4 = -12

Answered By

26 Likes