A good answer might be:

See the buttons.

Size of the Frame

The layout manager for this GUI is FlowLayout, which means that the components will be placed in the Frame left to right, top to bottom (raster order.) As many components as can fit will go into the first row, even if this means separating a label from its button:

To get the GUI to look right, the width and height have to be set correctly:

    fatApp.setSize( 280, 200 );     
This is a matter of trial-and-error. There are better ways to do this which use additional features of the AWT. Another useful thing to do is to give the entire frame a title. This is done with the
    setTitle( String title )
method of the frame. Now the top bar of the frame (the one that contains the "close button") will have a title.

QUESTION 16:

Suggest a good title for the frame.

Click Here after you have answered the question