DEV Community

A K I L A N
A K I L A N

Posted on

Core Java

OOPS

  • Object oriented programming
  • OOPs organizes the software around object rather than logic and functional
  • improves code reusablity
  • OOPS is based on the concept of classes and object
  • Make code easier to read and understand and mana ge

Class

  • A class is a blueprint or template used to create objects
  • It defiens the properties (data) and behaviors(methods) that objects will have
  • Contains data members and methods.

Top comments (0)