Essay
import javax.swing.*;
import java.awt.*;
public class JDemoGridLayout extends JFrame
{
private JButton b1 = new JButton("Button 1");
private JButton b2 = new JButton("Button 2");
private JButton b3 = new JButton("Button 3");
private JButton b4 = new JButton("Button 4");
private JButton b5 = new JButton("Button 5");
____________________________________________
private Container con = getContentPane();
public JDemoGridLayout()
{
con.setLayout(layout);
con.add(b1);
con.add(b2);
con.add(b3);
con.add(b4);
con.add(b5);
setSize(200, 200);
}
public static void main(String[] args)
{
JDemoGridLayout frame = new JDemoGridLayout();
frame.setVisible(true);
}
}
Using the above code, write the statement in the shaded line provided to establish a GridLayout with three horizontal rows and two vertical columns, with horizontal and vertical gaps of five pixels each.
Correct Answer:

Verified
private GridLayout l...View Answer
Unlock this answer now
Get Access to more Verified Answers free of charge
Correct Answer:
Verified
View Answer
Unlock this answer now
Get Access to more Verified Answers free of charge
Q2: The wildcard in the import java.awt.* statement
Q8: import javax.swing.*;<br>import java.awt.*;<br>public class JDemoBorderLayout extends JFrame<br>{<br>private
Q9: The FlowLayout class contains _ constants you
Q11: import java.awt.*;<br>import javax.swing.*;<br>import java.awt.Color;<br>public class JFrameWithColor extends
Q13: The _ manager is the default manager
Q15: Describe the difference between an ActionEvent and
Q17: A(n) _ implements all methods in an
Q45: The parent class for all event objects
Q46: A _ is placed at the top
Q62: Use the _ layout manager when you