Coding principles for Software Project
Preparation : Before writing code
Coding: When writing code
- Understand the problem you’re trying to solve
- Understand basic design principles and concepts
- Pick a programming language that meets the need s of the software to be built and the environment in which it will operate
- Create a set of unit tests that will be applied once the coding is complete for each component
Coding: When writing code
- Constrain your algorithm by following structured programming practice
- Select the data structure that will meet the needs of design
- Understand the software architecture and create interfaces that are consistent with it
- Select meaningful variable name
- Create visual layout
Comments
Post a Comment