Question: How many times will the string Hello World be printed? And explain the reasons count1 = 12; while (count1 >0) { count2 = 5; while
How many times will the string "Hello World" be printed? And explain the reasons
count1 = 12;
while (count1 >0)
{
count2 = 5;
while (count2 >=1)
{
System.out.println("Hello World");
count2--;
}
count1--;
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
