They separate SQL logic from data. Frame the concept in practical terms so you can explain it during interview discussion.
Prepared statements compile SQL code first without user input, then execute it with the input parameters. This prevents attackers from injecting malicious SQL. In Java, the PreparedStatement class is used to create parameterized queries.
Additional Notes
How do prepared statements prevent SQL injections?