A swimming event at the gala consists of 3 heats, each with 6 swimmers - Edexcel - GCSE Computer Science - Question 8 - 2021 - Paper 1
Question 8
A swimming event at the gala consists of 3 heats, each with 6 swimmers. Heat winners and the 3 fastest losers from the heats qualify for the final.
Heat_File is use... show full transcript
Worked Solution & Example Answer:A swimming event at the gala consists of 3 heats, each with 6 swimmers - Edexcel - GCSE Computer Science - Question 8 - 2021 - Paper 1
Step 1
Complete the flowchart to illustrate the process of selecting the swimmers for the final.
96%
114 rated
Only available for registered users.
Sign up now to view full answer, or log in if you already have an account!
Answer
Start: The process begins.
Input swimmer data: Collect the heat times, heat winners, and swimmer numbers from Heat_File.
Decision: T_Count < 3?: Check if the number of swimmers selected (T_Count) is less than 3.
If Yes: Proceed to the next step.
If No: Go to the END.
Decision: F_Count < 6?: Check if the number of finalists (F_Count) is less than 6.
If Yes: Proceed to the next step.
If No: Go to the END.
Increment T_Count: Update the T_Count to include the current swimmer.
END: Stop the flowchart.
Step 2
Draw a flowchart to represent the process of checking entries for an event.
99%
104 rated
Only available for registered users.
Sign up now to view full answer, or log in if you already have an account!
Answer
Start: The flowchart begins.
Input entries: Check the number of entries submitted.
Decision: entries < 18?: Verify if the total entries are less than 18.
If Yes: Go to the next step.
If No: END the process.
Check membership scheme: Identify if the member falls under ‘full’ members or ‘swim only’ members.
If eligible: Go to the next step.
If not eligible: Indicate not eligible status and END.