Code may become less organized and harder to maintain.
Without instance methods, related logic might scatter across the codebase, reducing cohesion. In an e-commerce app, calculations like `calculateLineTotal` should belong to `CartItem` to maintain clarity and manageability.
Additional Notes
What are the implications of not using instance methods?