Question: Question 7 How many Go will be printed by the following code fragment? for(int row=1; row
Question 7
How many Go will be printed by the following code fragment?
for(int row=1; row<=2; row++)
{ for(int col=1; col<=5; col++)
{ System.out.print("Go\t"); } System.out.println( ); }
|
| A. | 1 |
|
| B. | 5 |
|
| C. | 2 |
|
| D. | 10 |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
