SOLID Principals in Programming
SRP: Single Responsibility Principle
A class should have one and only one reason to change. You should be able to define what an application is doing in one single line.
Program Class:
The main method initializes a circle, calculates its area, and ...
codewithmayank.hashnode.dev6 min read