L8: Object-Oriented Design - Fundamentals Flashcards
1
Q
What is object-oriented design?
A
Object-oriented design is a process by which a set of detailed object-oriented design models are built, which are then used by programmers to write and test programs for the new system.
2
Q
In OOP, what is “instantiation”?
A
Instantiation is the creation of a new object of a class, in the memory, based on a template provided by the class
3
Q
In OOP, what is a “method”?
A
A method is a programmed functionality associated with an class, that is available to be called by any object instantiated within that class.