flowchart to memorise Flashcards
go over on 23/04/2022, then 25/04/2022 and 26
1) what is first?
circle saying start
2) what is next?
square with:
StudentN=[]
StudentR=[]
StudentG=[]
3) What is third?
parallelogram with:
Input StudentN
4) What is fourth?
diamond with:
StudentN more or equal to 6
5) What is fifth?
paralleogram saying:
input name of students
6) what is sixth?
parallelogram saying
Input marks
7) What is seventh?
square saying
StudentN.append(name)
StudentR.append(results)
8) What is eighth?
diamond saying
is len(student names) and len(marks) == studentN?
9) What is ninth?
square with count = 0
What is tenth?
3 separate diamond connected with arrows saying:
Is StudentR less or equal than (40, or 50, or 60)
What is 11th?
square with count=count+1
What is 12th?
4 squares connected to eachother saying
StudentG = F or P or M or D
StudentG.append(grades)
What is 13th?
connect the 4 squares to another square which will say
Bubble sort( StudentN, StudentR, StudentG)
What is 14th?
parallelogram saying
OUTPUT StuN, StuG, StuR
What is 15th?
parallelogram saying
OUTPUT “There were “, count, “Distinctions achieved”