|
30 | 30 | "\n",
|
31 | 31 | "- the process of converting requirements into an implementation specification\n",
|
32 | 32 | "- name the objects, define the behaviors, and their interactions with each other\n",
|
33 |
| - "- transforming *what* should be done into *how* \n", |
| 33 | + "- transforming *what* should be done into *how* using OOP\n", |
| 34 | + "\n", |
| 35 | + "## Objects and Classes\n", |
| 36 | + "- *object* is a collection of data with associated behaviors\n", |
| 37 | + "- *class* is a kind or *type* of object\n", |
| 38 | + "- Unified Modeling Language (UML) is commonly used to design the classes and their interactions\n", |
34 | 39 | "\n",
|
35 | 40 | "## Object-oriented programming (OOP)\n",
|
36 | 41 | "- process of converting a design into a working program that does what the product owner originally requested\n",
|
| 42 | + "- use OOP concepts to implement the OOD\n", |
| 43 | + "\n", |
| 44 | + "## Software Development Models\n", |
37 | 45 | "- some popular development models are: **waterfall**, **iterative**, **agile**, etc.\n",
|
38 | 46 | "- **waterfall** is the traditional model where each phase is completed before the next phase begins\n",
|
39 | 47 | "- **agile** is a more modern model where focus is on delivering working software in short iterations\n",
|
40 | 48 | " - ci-cd (continuous integration, continuous deployment) is a popular agile model\n",
|
41 | 49 | " - scrum, kanban, pair programming, etc. are popular agile methodologies\n",
|
42 |
| - " - focus is on delivering working software quickly and frequently as a team effort with high customer satisfaction\n", |
43 |
| - "\n", |
44 |
| - "## Objects and Classes\n", |
45 |
| - "- *object* is a collection of data with associated behaviors\n", |
46 |
| - "- *class* is a kind or *type* of object\n", |
47 |
| - "- Unified Modeling Language (UML) is commonly used to design the classes and their interactions" |
| 50 | + " - focus is on delivering working software quickly and frequently as a team effort with high customer satisfaction\n" |
48 | 51 | ]
|
49 | 52 | },
|
50 | 53 | {
|
|
0 commit comments