Code planning Flashcards
When we create a C program, we follow a sequence of steps called…?
Program Development Cycle
What are the steps of the Program Development Cycle?
- Problem Analysis
- Algorithms or flowcharting
- Implementation of the code
- Testing and Debugging
- Documentation and Maintenance
What is problem analysis?
Analysis of the problem given
What is Algorithm and flowcharting?
Planning the flow of the program through algorithm trace or flowchart
What is algorithm?
A sequence of steps that will solve the problem or program
What are the basic flowchart symbols?
- Stadium
- Arrow
- Parallelogram
- Rectangle
- Diamond
This flowchart symbol signifies the start and end of program
Stadium
This flowchart represents and input and output of the program
Parallelogram
This flowchart shows the assignments or statements executed
Rectangle
This flowchart symbol points to the next activity.
Arrow
This flowchart symbol represents a comparison or decision activity like if - else statements.
Diamond
What is testing?
Identifying the output of the program through a series of test cases
What is debugging
Identifying the errors found in the program
What are the two types of errors?
- Syntactical or Logical errors
2. Compile or run- time errors
This is an error where the program has a syntax error such as a missing semicolon or a misspelled identifier
Syntactical error
This is an error where the program shows an output that is not what you expect
Logical error
This is an error where it appears during a program is running like an infinite loop
Run - time errors
This is an error that halts the compilation of the program and appears after a syntax error is found.
Compile error or Compile - time error
What is documentation?
They maintain the relevance and validity of the program
What are the 3 types of documentation?
- User - defined manual
- Technical manual
- Internal documentation
This type of documentation contains information on the software and hardware requirements, installation procedures, and step by step instructions on how to use the system.
User - defined manual
This type of documentation is a printed copy of the information regarding how the program was designed and how it was created. This includes the data types or structures used and the algorithm and flowchart presented.
Technical manual
This type of documentation is explains the program through the use of comments.
Internal documentation