My favorite part of an interview, to the surprise of no one that knows me here, is: OOP Theory and Design
This is the sixth thread of the series: Interview Preparation!
THREAD
This is the sixth thread of the series: Interview Preparation!


First, you need to get comfortable with the basics & Principles of OOP:
- Object, Message, Methods
- References, State, Properties
- Encapsulation, scope, interfaces
- Classes & Constructors
- Inheritance
- Diagrams
I got you covered for these topics
- Object, Message, Methods
- References, State, Properties
- Encapsulation, scope, interfaces
- Classes & Constructors
- Inheritance
- Diagrams
I got you covered for these topics

- Interfaces vs Abstract classes:
Interfaces are contracts, define boundaries, help you design to extend, and not modify
Abstract classes are "incomplete" classes, and therefore they can't be instantiated. You need to derive from them and complete its definition
Interfaces are contracts, define boundaries, help you design to extend, and not modify
Abstract classes are "incomplete" classes, and therefore they can't be instantiated. You need to derive from them and complete its definition

- Polymorphism: You should code a solution that uses polymorphism.
It is basically the possibility to treat several objects of different types via 1 interface.
A key idea is that the benefits of the polymorphism is perceived by the user that generalizes the usage.
It is basically the possibility to treat several objects of different types via 1 interface.
A key idea is that the benefits of the polymorphism is perceived by the user that generalizes the usage.

Another two key topics borderline with FP are mutability and Working with collections.
For collections you want to be comfortable using:
- filter, map, reduce,
- forEach, find, forAll, any
Or whatever equivalents there are in your preferred language.
For collections you want to be comfortable using:
- filter, map, reduce,
- forEach, find, forAll, any
Or whatever equivalents there are in your preferred language.

Practice, practice practice!
Search for exercise online, or imagine your own scenarios:
- How would you model a supermarket?
- What about a Factory?
- And a shopping cart?
Try things out and design solutions following design principles!
Search for exercise online, or imagine your own scenarios:
- How would you model a supermarket?
- What about a Factory?
- And a shopping cart?
Try things out and design solutions following design principles!

Then I would recommend you to read some books or material related to:
- Design patterns (I have content coming your way 4 this)
- Refactoring
- Testing
There is always a couple of questions regarding those 3 topics!
- Design patterns (I have content coming your way 4 this)
- Refactoring
- Testing
There is always a couple of questions regarding those 3 topics!

"Design patterns are solutions for repetitive problems we find while developing software.
Each pattern has a name for reference, the problem for which it should be applied, and a high-level solution"
Clear and short definition
You can read more here:
https://www.codejourneyclub.com/design-patterns-the-holy-grail/
Each pattern has a name for reference, the problem for which it should be applied, and a high-level solution"
Clear and short definition
You can read more here:
https://www.codejourneyclub.com/design-patterns-the-holy-grail/

For refactoring the idea is to change the design and implementation without modifying the functionality
Then why change it?
To make it cleaner, more scalable, more extensible & overall to improve the quality
A trigger for refactoring are code smells:
https://www.codejourneyclub.com/does-your-code-smell/
Then why change it?
To make it cleaner, more scalable, more extensible & overall to improve the quality
A trigger for refactoring are code smells:
https://www.codejourneyclub.com/does-your-code-smell/
