Westonci.ca is the best place to get answers to your questions, provided by a community of experienced and knowledgeable experts. Get immediate answers to your questions from a wide network of experienced professionals on our Q&A platform. Connect with a community of professionals ready to help you find accurate solutions to your questions quickly and efficiently.

Using the following code segment, which best describes the output? for(int outer = 7; outer > 0; outer −= 2) { for(int inner = 0; inner < outer; inner ) { System.out.print("∗"); } System.out.println(); } A rectangle with 4 rows and 7 columns of stars A rectangle with 7 rows and 4 columns of stars A square with sides of 28 stars A triangle resting on its base of 7 stars A triangle standing on its point of one star