Multiple choice technology programming languages

Which containers use a FlowLayout as their default layout?

  1. Panel and Applet

  2. Panel and Frame

  3. Frame and Applet

  4. Panel and Jframe

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Panel and Applet containers use FlowLayout as their default layout manager in AWT. FlowLayout arranges components in a left-to-right flow, similar to text in a paragraph. Frame and Window use BorderLayout by default, while JFrame uses BorderLayout by default in Swing.