Through query plan caching. Frame the concept in practical terms so you can explain it during interview discussion.
PreparedStatements improve performance by allowing the database to cache query plans. Once a SQL query is prepared, its execution plan is stored, reducing parsing time for subsequent executions. This is particularly beneficial in e-commerce sites where queries are frequently repeated, like retrieving user purchase histories.