OOP Concepts
OOP is a programming paradigm that models software around 'objects' — bundles of state (fields) and behavior (methods) — rather than around functions and logic alone. Java is fundamentally object-oriented: almost everything except primitives is an object.
Beginner3 min

