Front | Back |
What is a computer program?
|
A list of instructions
|
What are the 5 steps of the programming process?
|
IDWTDIdentifyDesignWrite TestDocument
|
What are the 2 parts to identify the problem?
|
Requirements and specifications.
|
What is requirements?
|
What is needed to be
part of the solution, Define what your program needs to do, Understand the
reason for creating the program and who will be using it andexamine and the
data to be processed to ensure the program will handle data requirements
|
What is specifications?
|
1. In Specifications,
you need to keep in mind what your program needs to fulfill its requirements
and determine the needs of the users .
|
What is the top down design?
|
When you get the big problem and break it fown into smaller sub-problems so that each sub-problem can be solved into a few steps.
|
What is modularization?
|
Breaking down smaller problems into smaller problems.
|
What is an algorithm?
|
A set of steps in order approach to solve a problem
|
What is pseudocode?
|
Algorithm wirtten in english or code
|
What is following the syntax of the language?
|
Rules of the language
|
What is programming style?
|
Agreed upon to make coding easier
|
What is debugging?
|
Running the program
|