Module 9: Creating Object Oriented programs using classes and instances
In this module you will learn: What Object Oriented Programming is and why it is such an important coding paradigm The four fundamental principles of object orientation and how are they implemented in coding languages The difference between what a class, instance and object are, as well as how to define them in your code How to use methods to modify an object and its data and how methods allow us to reference objects in object oriented coding What the difference is between i...