Using CompletableFuture. Frame the concept in practical terms so you can explain it during interview discussion.
HttpClient in Java performs asynchronous requests by using CompletableFuture. This allows for non-blocking calls, improving application responsiveness. For example, in an e-commerce app, you might fetch product details and user reviews simultaneously without waiting for one to complete before starting the other.