Skip to content

Commit afde82d

Browse files
committed
update OOD chapter
1 parent 5e1b68e commit afde82d

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

notebooks/ObjectOrientedDesign.ipynb

+10-7
Original file line numberDiff line numberDiff line change
@@ -30,21 +30,24 @@
3030
"\n",
3131
"- the process of converting requirements into an implementation specification\n",
3232
"- 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",
3439
"\n",
3540
"## Object-oriented programming (OOP)\n",
3641
"- 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",
3745
"- some popular development models are: **waterfall**, **iterative**, **agile**, etc.\n",
3846
"- **waterfall** is the traditional model where each phase is completed before the next phase begins\n",
3947
"- **agile** is a more modern model where focus is on delivering working software in short iterations\n",
4048
" - ci-cd (continuous integration, continuous deployment) is a popular agile model\n",
4149
" - 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"
4851
]
4952
},
5053
{

0 commit comments

Comments
 (0)