Proxy prevents loading until necessary. Frame the concept in practical terms so you can explain it during interview discussion.
The Proxy pattern helps defer the creation or loading of an object until it's truly needed. For example, in an e-commerce app, product images can consume significant memory. By using a Proxy, images are only loaded when the user requests to view them, saving resources.