How many times will the following loops run?
1. for (int i=0; i<10; i++)
2. for (int i=10; i>0; i--)
3. for (int i=10; i<=10; i--)
4. for (int i=1; i>0; i++)
5. for (int i=1; i<0; i--)