Symptoms Large class refers to a software design problem where a single class becomes too large and complex, difficult to understand, maintain and extend. # Large Class
class LargeClass {
# Many class variables
# Many fields
# Many Methods
} Treatment To address this problem, developers can refactor the class by…