What is 'Object-Oriented Programming' (OOP)?

Asked by kemiadewale · 2 weeks ago

1 Answer

24
amorebise · 2 weeks ago Top Answer

OOP is a way of organizing code by grouping data and actions into 'Objects'. Think of a 'Car' object. It has data (color, model) and actions (start, stop). It makes large programs easier to manage.

Log in to add a comment.