One idea
A class is the plan. An object is one real thing made from that plan, with its own state.
State is the data an object remembers between method calls. Methods should change or read that state for a clear feature reason.
Feature first
Do not start with a class named Manager, Helper, or Utils. Start with a feature sentence.
Example: “A student can add expenses and see the total split for a hostel trip.” This suggests objects like Trip and Expense because they are real parts of the feature.