R

Rakesh Kumar • 28.44K Points
Instructor II

Q. What will be the output of the following Java program?

Code:
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
  • Correct Answer - Option(C)
  • Views: 83
  • Filed under category JAVA

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.


Question analytics