The card layout stores layouts in
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.