Notes Computer
Notes Computer
10.2 Algorithm
Characteristics:
1. Start
4. Print Sum
5. End
1. Start
2. Input number
5. End
10.5 Problems with Algorithms
10.6 Flowchart
Oval: Start/End
Parallelogram: Input/Output
Rectangle: Process
Diamond: Decision
---
11.4 Constants
Definition: Values that do not change during the program's
execution.
11.5 Variable
Example: LET A = 10
Example:
FOR I = 1 TO 5
PRINT I
NEXT I