Programming paradigm you favour
The way of thinking about code you lean toward — the style that feels most natural when you build.
A plain statement of the coding style you prefer; nothing more is read into it. (Computer science)
Groups
- Object-oriented — Models the world as objects with state and behaviour (Java, C#, Python).
- Functional — Builds from pure functions and immutable data (Haskell, Clojure, Elm).
- Procedural — Step-by-step routines and procedures (C, Go, classic scripting).
- Declarative — Says what you want, not how — SQL, configuration, query languages.
- Logic — Programs as facts and rules the machine reasons over (Prolog).
- Event-driven — Reacts to events and messages as they arrive.
- Multi-paradigm — Mixes styles freely — picks the right tool for each job.
Related topics
All topics on ArtaQuest