Q48
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
AnswerD.
1 2 3 4 5 6 7 8 9
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board