Program Development Cycle Flashcards
1
Q
What is Program development life cycle
A
It is a systematic way of developing quality software
2
Q
What are the six steps of program development life cycle
A
- Problem definition
- Problem analysis
- Algorithm Development
- Coding & Documentation
- Testing & Debugging
- Maintenance
3
Q
What is Sequential programming
A
This is when the algorithm to be solved consists of operations one after the other.
4
Q
What are the 3 types of control structures
A
The Sequence structure
The decision/selection structure
Repition/iteration structure
5
Q
What is a sequence structure
A
It is a case where the steps in an algorithm are constructed in such a way that, no condition is required
6
Q
Design/Selection structure
A
If else statement
The case statement
7
Q
Repition structure
A
Repeat Until loop
While loop
For loop