How many times will the following loop execute?
public class Loop
{
    public static void main (String args[ ])
    {
        int sum=0;
        for(int i=0;i>5;i++)
           {    
                 sum+=i;
            }
          System.out.println(sum);
     }
}


Posted on by