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

1 Expert Approved Answer
Step: 1 Unlock

The code you provided will produce only one line of output Heres why for int i 0 i 999 i Syste... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Introduction To Programming Questions!