OOP Flashcards
1
Q
Abstraction
A
Hiding implementation details from the user.
2
Q
Inheritance
A
Using super and sub classes to inherit details from one another.
Example, animal and dog
3
Q
Polymorphism
A
Inheritance but different forms Animal dog = new Dog();
4
Q
Encapsulation
A
Protecting data by limiting access utilizing getters and setters.