C# Flashcards
is a procedure or formula for solving a problem, based on conducting a sequence of specified actions.
Algorithm
Is English description of what you want the program to do
Pseudocode
directs the computer to process the program instructions, one after another, in the order listed
Sequence Structure
alerts the computer that a decision needs to be made, and it provides the appropriate action(s) to take based on the result of that decision.
Decision Structure
indicates that one or more instructions need to be repeated until some condition is met.
Repetition Structure
A named location in computer memory that can hold different values at different points in time.
Variable
A named location in computer memory that cannot be changed after a program is compiled.
Constant
Describes the format and size of (amount of memory occupied by) a data item (constant or variable).
Data Type
1st step in the problem solving process
Analyze the problem.
2nd step in the problem solving process
Plan the algorithm.
3rd step in the problem solving process
Desk-check the algorithm.
4th step in the problem solving process
Code the algorithm into a program.
5th step in the problem solving process
Test the program.
6th step in the problem solving process
Evaluate and modify (if necessary) the program.
Characteristics of the class (Variables and Constants)
Data Members