A method should have one clear purpose. Frame the concept in practical terms so you can explain it during interview discussion.
Adhering to a single responsibility makes methods easier to test and reuse. For instance, `calculateTotalPrice()` should only handle price calculation, not printing receipts.
Additional Notes
What does the single responsibility principle mean for methods?