Designing, creating and refining algorithms
22
0/4

An algorithm is designed to determine if a level in a video game is a "Boss Level". Every 10th level is a Boss Level (e.g. 10, 20, 30). This means that if the level number divided by 10 has a remainder of 0, it is a Boss Level.

The flowchart for this algorithm is incomplete.

An incomplete flowchart diagram.

Complete the flowchart by matching the correct statements to the placeholders [ 1 ], [ 2 ], [ 3 ], and [ 4 ].

Choose from the following statements:

  • OUTPUT "Boss Level"
  • INPUT level
  • OUTPUT "Normal Level"
  • level MOD 10 == 0?
[4]

Designing, creating and refining algorithms Questions

Practise OCR GCSE Computer Science Designing, creating and refining algorithms with exam-style questions for GCSE Computer Science. 50 questions, matched to the OCR GCSE Computer Science (J277) specification and written in Component 01 and Component 02 style. Every question includes a full worked solution and mark scheme, so you can see where marks are awarded rather than just whether you got the answer right.

PreviousNext

Designing, creating and refining algorithms Questions

  1. GCSE
  2. /Computer Science
  3. /Designing, creating and refining algorithms