User interface language: English | Español

Date May 2019 Marks available 1 Reference code 19M.1.SL.TZ0.16
Level SL Paper 1 Time zone no time zone
Command term Identify Question number 16 Adapted from N/A

Question

A school teacher decides to write a program to store class records and marks. Part of this program involves using a sort algorithm. The algorithm shown is a selection sort and to test it, the teacher has set up an array VALUES[] with 5 elements of test data.

LIMIT = 4

loop COUNTER1 from 0 to LIMIT – 1
MINIMUM = COUNTER1

loop COUNTER2 from COUNTER1 + 1 to LIMIT
if VALUES[COUNTER2] < VALUES[MINIMUM] then
MINIMUM = COUNTER2
end if
end loop

if MINIMUM ≠ COUNTER1 then
TEMPORARY = VALUES[MINIMUM]
VALUES[MINIMUM] = VALUES[COUNTER1]
VALUES[COUNTER1] = TEMPORARY
end if

end loop

 

Identify two variables that have been used in the algorithm.

[1]
a.

Copy and complete the table below to trace the algorithm using the data set:

20, 6, 38, 50, 40

[5]
b.

With reference to the algorithm in the flow chart, construct this algorithm in pseudocode so that it performs the same function.

[3]
c.i.

State the type of sort in the algorithm constructed in c(i).

[1]
c.ii.

Construct an algorithm fragment to output the data in the array VALUES[].

[2]
d.

The sorting algorithm could be part of a sub-program within a larger program.

Explain the benefits of using sub-programs when constructing a larger program.

[3]
e.

Markscheme

Award [1] for any two from:

LIMIT;
MINIMUM;
COUNTER1;
COUNTER2;
TEMPORARY.
a.

Award [5 max].
Both COUNTER1 and COUNTER2 correct;
MINIMUM column correct;
Final VALUES[] 0, 1, 2 correct;
Final VALUES[] 3, 4 correct;
TEMPORARY column correct;

Note to examiners:
Allow follow through (FT).
In case of different representation of values in columns COUNTER1 and COUNTER2, then FT, award marks for the correct values of the variables MINIMUM and TEMPORARY.

b.

Award [3 max].
Use of correct nested loops;
Correct use of flag;
Inner loop checking adjacent cells;
Values being swapped if necessary;

Example algorithm 1:

LIMIT = 4
FLAG = TRUE
loop while FLAG = TRUE
FLAG = FALSE
loop COUNTER from 0 to LIMIT - 1
if VALUES[COUNTER] > VALUES[COUNTER + 1] then
TEMPORARY = VALUES[COUNTER]
VALUES[COUNTER] = VALUES[COUNTER + 1]
VALUES[COUNTER + 1] = TEMPORARY
FLAG = TRUE
end if
end loop
end loop

A recursive solution is allowed at HL. SL candidates who submit an above level recursive solution should also receive credit.

Version 1 – basic recursive solution

Award [3 max].
BUBBLESORT defined as a procedure with correct pass through parameters and end/return statement;
Correct loop with values swapped if necessary inside procedure;
Recursive call of BUBBLESORT with parameters passed;
Correct condition for recursive call;

Example algorithm 2

LIMIT = 4
BUBBLESORT(VALUES, LIMIT)
loop COUNTER from 0 to LIMIT - 1
if VALUES[COUNTER] > VALUES[COUNTER + 1] then
TEMPORARY = VALUES[COUNTER]
VALUES[COUNTER] = VALUES[COUNTER + 1]
VALUES[COUNTER + 1] = TEMPORARY
end if
end loop
if LIMIT – 1 > 1 then
call BUBBLESORT(VALUES, LIMIT - 1)
end if
end BUBBLESORT

Version 2 – more efficient recursive solution

Award [3 max].
BUBBLESORT defined as a procedure with correct pass through
parameters and end/return statement;
Correct loop with values swapped if necessary inside procedure;
Recursive call of BUBBLESORT with parameters passed;
Correct condition for recursive call;
Correct use of flag;

Example algorithm 2

LIMIT = 4
BUBBLESORT(VALUES, LIMIT)
FLAG = FALSE
loop COUNTER from 0 to LIMIT - 1
if VALUES[COUNTER] > VALUES[COUNTER + 1] then
TEMPORARY = VALUES[COUNTER]
VALUES[COUNTER] = VALUES[COUNTER + 1]
VALUES[COUNTER + 1] = TEMPORARY
FLAG = TRUE
end if
end loop
if LIMIT – 1 > 1 and FLAG = TRUE then
call BUBBLESORT(VALUES, LIMIT - 1)
end if
end BUBBLESORT
c.i.

Bubblesort;

c.ii.

Award [2 max].
Use of (any type of) loop;
Correct output statement;

Example algorithm:

loop COUNTER from 0 to LIMIT
output VALUES[COUNTER]
end loop
d.

Award [3 max].
Sub-programs contain reusable code (for use in other programs);
A large programming project can be divided into sub-programs;
Different sub-programs can be constructed by different programmers;
Future maintenance is easier due to the organisation of the large program (into sub-programs);

e.

Examiners report

No real problems noted with this question other than a few candidates did not accurately copying the variable names as provided in the algorithm.

a.

Many fully correct or partially correct responses to this question were seen, however, a significant number of candidates did not fully trace the algorithm to its conclusion, therefore limiting their mark for the question.

b.

Most candidates attempted to construct this algorithm and the vast majority made use of pseudocode, rather than a programming language, unfortunately, very few achieved full marks. The usual reason was that candidates did not give a nested loop, which made the awarding of full marks difficult, as the outer loop also makes use of a flag as its terminal condition, therefore also affecting one of the other marking points. Many candidates incorrectly made use of the conditional IF statement as though it was a loop, thereby creating an ‘IF loop’.

c.i.

Many candidates recognised that the algorithm was a sorting routine, but not all specified the correct type. Other candidates thought it was a search routine.

c.ii.

A number of versions of correctly operating responses were seen for this question, some of which were given in pseudocode, others were in programming code. However, a small number of responses were not given inside a loop, so therefore would only print one of the values.

d.

Many responses seen were quite brief making it difficult to award all the marks, as the responses did not cover sufficient distinct marking points. However, the responses seen demonstrated that candidates understood the benefits of using sub-programs when constructing a larger program, and with a bit more detail in their answer, could have achieved full marks.

e.

Syllabus sections

Topic 4: Computational thinking, problem-solving and programming » 4.3 Introduction to programming
Show 34 related questions
Topic 4: Computational thinking, problem-solving and programming

View options