Question: Given the variables String stars = *****; String stripes = =====; what do these loops print? a. int i = 0; while (i < 5)

Given the variables


String stars = "*****";
String stripes = "=====";
what do these loops print?
a. int i = 0;
while (i < 5)
{
System.out.println(stars.substring(0, i));
i++;
}
b. int i = 0;
while (i < 5)
{
System.out.print(stars.substring(0, i));

System.out.println(stripes.substring(i, 5));
i++;
}
c. int i = 0;
while (i < 10)
{
if (i % 2 == 0) { System.out.println(stars); }
else { System.out.println(stripes); }
}

Step by Step Solution

3.27 Rating (153 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

Explantion The given loop runs from i 0 to 4 each time a substring of stars is printed When i is 0 starssubstring0i will be empty string as the start ... 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

Document Format (2 attachments)

PDF file Icon

2106_61d6ac3463202_872238.pdf

180 KBs PDF File

Word file Icon

2106_61d6ac3463202_872238.docx

120 KBs Word File

Students Have Also Explored These Related Java Concepts Late Objects Questions!