Assume you have this program:
import javax.swing.*;import java.awt.*;public class BorderLayoutExercise extends JFrame{public BorderLayoutExercise(){setTitle("Border Layout Exercise");setSize(300, 200);setDefaultCloseOperation(EXIT_ON_CLOSE);setLayout(new BorderLayout());add(new JLabel("Lisa the label"), BorderLayout.NORTH);add(new JLabel("LaToya the label"), BorderLayout.CENTER);add(new JLabel("Lemmy the label"), BorderLayout.SOUTH);setVisible(true);} // end BorderLayoutExercise constructor//*******************************************************public static void main(String[] args){new BorderLayoutExercise();}} // end class BorderLayoutExercise(a) Specify the changes you would make to the above code to produce this output:

(b) Specify the changes you would make to the above code to produce this output:

We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.