Flow Control

Question 1 of 14

for(int i = 0 ; i < 10 ; ++i)
    {
        if(i%2 == 0)
        {
            continue;
        }
        System.out.print(i+" ");
    }
what gets printed to the console on executing the for loop above ?