At Westonci.ca, we connect you with experts who provide detailed answers to your most pressing questions. Start exploring now! Explore our Q&A platform to find reliable answers from a wide range of experts in different fields. Get immediate and reliable solutions to your questions from a community of experienced professionals on our platform.

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