Question: Consider the code block below. How many times is Java printed? for (int in = 4; in <7; in ++) { for (int out =
Consider the code block below. How many times is "Java" printed?
for (int in = 4; in<7; in ++)
{
for (int out = 1; out <= 6; out++)
{ System.out.println("Java");
}
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
