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