Examveda
Examveda

What will be the output of the following Java program?
class jump_statments 
{
    public static void main(String args[]) 
    {        
         int x = 2;
         int y = 0;
         for ( ; y < 10; ++y) 
         {
             if (y % x == 0) 
                 continue;  
             else if (y == 8)
                  break;
             else
                System.out.print(y + " ");
         }
    } 
}

A. 1 3 5 7

B. 2 4 6 8

C. 1 3 5 7 9

D. 1 2 3 4 5 6 7 8 9

Answer: Option C


This Question Belongs to Java Program >> Operators

Join The Discussion

Related Questions on Operators