Use the close() method to free resources. Frame the concept in practical terms so you can explain it during interview discussion.
Closing a PreparedStatement is crucial to free up database resources. Failing to do so can lead to resource leaks and performance issues, especially in applications with numerous database operations. Always call `pstmt.close()` in a finally block or use try-with-resources.