OOP Flashcards
(6 cards)
is a programming paradigm that organizes
software design around objects, rather than
functions and logic.
OOP (Object-Oriented Programming)
It’s a way of structuring code that makes it
more modular, reusable, and scalable.
OOP (Object-Oriented Programming)
is a fundamental concept in Object- Oriented Programming (OOP) and serves as the blueprint or prototype from which objects are created
Classes
Classes contains all the – and –
attributes and methods
These are the global variables declared
inside the class of our object and are used to create variations of an object using
only one class.
Attributes
Process of creating an object using a class so we can use it in our program.
className identifier = new className():
Class Instantiation