
Available under Creative Commons-ShareAlike 4.0 International License.
Many students will learn modular structured programming before learning object-oriented programming. The common way of teaching programming fundamentals is to cover them or divide them into three courses, usually covered in this order:
- Modular structured
- Object-oriented
- Data structures
The following items learned in modular structured programming fow into the learning of object-oriented programming:
- The standard and complex data types are the same
- The operators are the same, thus data manipulation is the same
- The control structures are the same
- Concepts of documentation and making code readable are the same
- The use of test data to verify logical thinking and program results is similar
- 1822 reads