How do we organize related data and functionality in OOP?
- We bundle it into one object
- We separate data and functionality into different objects
- We put functions at the top of the code, followed by variables
- We put the entire application's data and functions in an object
We bundle it into one object.