Unit 1 - Pseudocode and Flowcharts revision [ARA] v2
Unit 1 - Pseudocode and Flowcharts revision [ARA] v2
1 Fill in the blanks to create the pseudocode for the following python
program.
START
FOR i = 0 TO 2
favsubject = INPUT “ What is one of your favorite subjects?
OUTPUT favsubject
ENDFOR
STOP
3 The following is a flowchart and its matching pseudocode. Answer the
questions below.
c. What is the name of the variable storing the input from the user each time
the algorithm loops?
favSubject
i=1
4 Following the previous example, create a flowchart for the following
pseudocode (this algorithm counts from 0 to 9).
START
FOR i = 0 TO 9
OUTPUT i
ENDFOR
STOP
https://drive.google.com/file/d/1v6tZnauJfEF4FvzP5H4UjguX3t7oFw_n/view?
usp=sharing
5 Create the pseudocode and flowchart for a program that will output every
number multiplied by itself from 0 to 9.