C++ Developing A Program Flashcards
Steps for developing a program
1
Q
C++ Development Steps
A
- Define the problem
- Design a solution
- Write program implementing solution
- Compile program
- Link object files
- Test program
- Debug
2
Q
“What” Step
A
First step of developing a program, defining the problem
3
Q
“How” Step
A
Second step of developing a program, figuring out a solution
4
Q
Traits of Good Solution
A
- streightforward
- well documented
- built modularly
- robust
5
Q
Requrements for Writting a Program
A
- knowledge of programing language
* an editor
6
Q
Features of Programing Editor
A
- line numbering
- syntax highlighting and coloring
- unambigous font
7
Q
Compiler Tasks
A
- checks if the code follows c++ language rules
* translates source program into machine language
8
Q
Iostream Library
A
Responsible for printing text to konitor and getting input from user
9
Q
Debugging
A
Removing bugs, when the programs runs but doesn’t work correctly