Multiple choice

The card layout stores layouts in

  1. stack

  2. queue

  3. list

  4. flow

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

CardLayout in Java AWT stores multiple components in a stack-like structure, where only one component is visible at a time. Each component can be thought of as a 'card' in the stack, and you can flip through them to show different components. This is different from QueueLayout, ListLayout, or FlowLayout which don't use stack-based storage.