Anti Pattern
Everything on SkillVeris tagged Anti Pattern — collected across the glossary, study notes, blog, and cheat sheets.
7 resources across 1 library
Interview Questions(7)
What is the God Object Anti-Pattern?
A God Object is a class that has grown to know or do far too much — it centralizes unrelated state and behavior from across the system, violating the single re…
What is Spaghetti Code?
Spaghetti code is source code with a tangled, unstructured control flow and object structure — jumps, deep conditionals, and unclear dependencies between class…
What Are Common OOP Anti-Patterns?
Common OOP anti-patterns include the God Object (one class doing everything), Spaghetti Code (tangled, untraceable control flow), the Anemic Domain Model (data…
What is the Anemic Domain Model Anti-Pattern?
An Anemic Domain Model is an object design where domain classes contain only fields and getters/setters with no real behavior, while all the business logic tha…
What is the Circular Dependency Anti-Pattern?
A circular dependency is a design flaw where two or more classes (or modules) depend directly on each other, either mutually referencing one another or forming…
What is a Utility Class?
A utility class is a class that groups together a set of related static methods (and sometimes static constants) and is never meant to be instantiated, typical…
What is the Telescoping Constructor Anti-Pattern?
The telescoping constructor anti-pattern is a design flaw where a class exposes an ever-growing chain of overloaded constructors, each adding one more paramete…