Question: for ( int i = 0 ; i < m * n; i + + ) { System.out.print ( A ) ; }

for (int i =0; i < m * n; i++)
{
System.out.print("A");
}
for (int j =1; j <= m; j++)
{
for (int k =1; k < n; k++)
{
System.out.print("B");
}
}
Assume that the initial values of m and n are the same in code segment I as they are in code segment II. Which of the following correctly compares the number of times that "A" and "B" are printed when each code segment is executed?
Responses
"A" is printed m fewer times than "B".
"A" is printed m fewer times than "B".
"A" is printed n fewer times than "B".
"A" is printed n fewer times than "B".
"A" is printed m more times than "B".
"A" is printed m more times than "B".
"A" is printed n more times than "B".
"A" is printed n more times than "B".
"A" and "B" are printed the same number of times.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock 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 Programming Questions!