Question: How many lines of output does the following code fragment produce? for (int i = 0; i < 999; i++); { System.out.println(Hello); }
How many lines of output does the following code fragment produce?
for (int i = 0; i < 999; i++);
{ System.out.println("Hello"); }
Step by Step Solution
3.47 Rating (154 Votes )
There are 3 Steps involved in it
The code you provided will produce only one line of output Heres why for int i 0 i 999 i Syste... View full answer
Get step-by-step solutions from verified subject matter experts
