Question: hat is the output? int a = 10; do { System.out.print(a + ); a = a + 1; } while (a < 15); Question
hat is the output?
int a = 10; do { System.out.print(a + " "); a = a + 1; } while (a < 15);
Question 18 options:
|
|
11 12 13 12
|
|
|
11 12 13 14 15
|
|
|
10 11 12 13 14
|
|
|
10 11 12 13 14 15
|
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
