DEVFYI - Developer Resource - FYI

31 Q How are the elements of different layouts organized?

Swing AWT Interview Questions


(Continued from previous question...)

31 Q How are the elements of different layouts organized?

A The elements of a FlowLayout are organized in a top to bottom, left to right fashion. The elements of a BorderLayout are organized at the borders (North, South, East and West) and the center of a container. The elements of a CardLayout are stacked, on top of the other, like a deck of cards. The elements of a GridLayout are of equal size and are laid out using the square of a grid. The elements of a GridBagLayout are organized according to a grid. However, the elements are of different size and may occupy more than one row or column of the grid. In addition, the rows and columns may have different sizes. It is the most flexible layout.

(Continued on next question...)

Other Interview Questions