Status: Tags: Links: CMPT 225 Course Outline
Software Development Process
Steps
1 - Problem Statement + Requirements
- Describe the behaviour of our temperature conversion application by listing the steps it will perform when it will execute
- Classes, attributes, operations
- Methods
- Don’t need to include constructors, getters/setters
Satisfy user requirements - Choose right ADT - Best implementation of methods - Try different ADT, algorithms - Compare using Big O Notation (time efficiency) and space efficiency
3 - Implement Solution
- Code Documentation
- Copy psuedocode into comment
- Turn comment into actual code
- Psuedo code will act as commenting for a program
4 - Testing Solution
components
- Specific Test data
-
- Expected results
-
- Actual results
Backlinks
|
|
References:
Created:: 2022-01-12 13:39