9618/22

Computer Science 9618/22May/June 2025

Cambridge AS Level · Fundamental Problem-solving and Programming Skills · worked solutions for every part, with the mark scheme

7
questions
75
marks
120
minutes

Topics Programming · Data Types and Structures · Software Development · Algorithm Design and Problem-solving

Q1Medium-EasySoftware DevelopmentProgrammingData Types and Structures

A program is being developed to control the production line in a factory.

(a)

A number of different program life cycles are available for the development of a program.

2M
(i)

Explain the need for different program development life cycles.

1M
(ii)

Coding is a stage in a program development life cycle.

State one consideration that would influence the choice of programming language.

1M
(b)

The program has been in use for a number of months and adaptive maintenance is required.

4M
(i)

Give three reasons why adaptive maintenance may be required.

1 ........................................................................................................................................

2 ........................................................................................................................................

3 ........................................................................................................................................

3M
(ii)

As well as adaptive maintenance, other types of program maintenance may be needed.

Identify one other type of program maintenance.

1M
(c)

Pseudocode has been used to design modules for the program to control the production line.

The table shows four valid pseudocode expressions.

Complete the table by giving the data type of the evaluated expression.

ExpressionData type
RIGHT(MachineCode, 4)
Speed * 2.5
NOT Status
IS_NUM(Check)
4M
(d)

A global array Product is used as part of the pseudocode design being developed to control the production line. Product is used to store the number of rejected items each day.

The following pseudocode statement is used to assign a value to an element of the array:

Product[x, y] ← 23

The lower and upper bound values are shown in the table:

VariableLower boundUpper bound
x099
y09
4M
(i)

State the number of dimensions of Product

1M
(ii)

State the total number of elements in array Product

1M
(iii)

Give the pseudocode declaration for the array Product

2M
Q2Medium-EasyAlgorithm Design and Problem-solvingSoftware Development

A program to calculate the pay of employees working for a company is being designed.

(a)

Stepwise refinement has been used in the design of the program.

Describe stepwise refinement.

2M
(b)

One of the program modules used to calculate employees’ weekly bonus pay has been completed. The amount of bonus pay they receive is based on the number of hours worked and the value of sales made as shown in the table.

Bonus pay and value of sales are both in dollars.

Hours workedValue of salesBonus pay
between 1 and 40 inclusive2000 or less0
between 1 and 40 inclusiveabove 200050
above 402000 or less10
above 40above 2000100
6M
(i)

The module is tested using white-box testing.

State two tests, using valid data, that can be used to test different paths through the program.

Test one:

Hours worked .................................................

Value of sales .................................................

Bonus pay ......................................................

Test two:

Hours worked .................................................

Value of sales .................................................

Bonus pay ......................................................

2M
(ii)

The program to calculate pay uses a number of modules which are each called from different places in the program.

The program is to be tested using stub testing before all the program modules have been completed.

Describe stub testing.

2M
(iii)

The program has been completed and compiles successfully.

The program is tested using black-box testing.

Identify and describe one type of error that black-box testing could detect.

Type of error ......................................................................................................................

Description ........................................................................................................................

2M
Q38MMediumAlgorithm Design and Problem-solvingProgramming

An algorithm is designed to generate and output two unique random integers. Each integer value is between –10 and 10 inclusive.

If both integers output are negative, a third random integer between 30 and 35 inclusive will be generated and output.

Write pseudocode for this algorithm.

Similar questions
Q46MMediumAlgorithm Design and Problem-solvingData Types and Structures

An algorithm will:

• input 100 integer values, one value at a time
• store the first value input into the first location of the array Number
• store the next input value in the next unused location of the array Number
• output the contents of Number array in the opposite sequence to that in which the values were input.

Complete the program flowchart to represent the algorithm.

Variable declarations are not required.

Similar questions
Q5Medium-HardSoftware DevelopmentData Types and StructuresProgramming

An automated digital camera system is used to take a sequence of pictures of animals in a garden. During the design of the system, a state-transition diagram is produced.

The table details the states in the automated digital camera system along with the events which cause the states to change.

The system starts in standby mode. The sequence of pictures is taken when in active mode.

Current stateEventNext state
standby modeturn ondetect mode
detect modeturn offstandby mode
detect modemovement detectedactive mode
active mode20 seconds elapsedsequence complete
active modeturn offstandby mode
sequence completetime saveddetect mode
(a)

Complete the state-transition diagram for the automated digital camera system.

4M
(b)

At the end of each sequence of pictures, the time is saved as a string in the format <HH><MM><SS> where:

HH represents the hours using two digits
MM represents the minutes using two digits
SS represents the seconds using two digits.

For example:

• "081230" is stored to represent the time 8:12:30, in the morning
• "152235" is stored to represent the time 15:22:35, in the afternoon.

Each string is stored on a new line in the text file TimeTaken.txt

An algorithm is required to process the content of the text file TimeTaken.txt once it has been transferred to the computer.

For each hour when pictures are taken, output a suitable message showing the hour and the total number of sequences of pictures taken within that hour.

Example outputs:

Hour : 15 Total : 32
Hour : 18 Total : 1

Write pseudocode for this algorithm.

Assume the text file TimeTaken.txt contains at least one line.

8M
Q6MediumData Types and StructuresProgramming

Two arrays Data and Pointer are accessed by the procedure Place()

Data and Pointer are both global arrays of type INTEGER

The contents of these two arrays are shown:

DataPointer
1101817
2100723
3101031
4105646
510925-1
6106265
7103474
8089
90910
10010-1

Study the pseudocode:

PROCEDURE Place(Value : INTEGER, Start : INTEGER, Unused : INTEGER)
    DECLARE New, Current, Last : INTEGER
    CONSTANT NullPointer = -1
    New ← Unused
    Last ← NullPointer
    Current ← Start
    WHILE Current <> NullPointer AND Data[Current] < Value
        Last ← Current
        Current ← Pointer[Current]
    ENDWHILE
    Pointer[New] ← Pointer[Last]
    Pointer[Last] ← New
    Data[New] ← Value
ENDPROCEDURE
(a)
7M
(i)

Complete the trace table below by dry running the procedure Place() when it is called by the statement:

CALL Place(1043, 2, 8)

ValueStartUnusedNewLastCurrent
4M
(ii)

Complete the diagram showing the contents of the global arrays Data and Pointer after the procedure Place() has run to completion when called as shown in part (a)(i).

DataPointer
110181
210072
310103
410564
510925
610626
710347
88
99
1010
3M
(b)

The operation carried out by procedure Place() together with the arrays form part of the implementation of an Abstract Data Type (ADT).

Identify the ADT and state the operation carried out by procedure Place()

2M
Q7Medium-HardData Types and StructuresProgramming

A program is being developed to implement a customer loyalty scheme for a coffee shop.

Each customer has a unique customer ID starting at 10001 with this value increasing by one each time a new customer joins the loyalty scheme.

For example, the third customer who joins the loyalty scheme is given the customer ID 10003

The loyalty scheme is limited to 1000 customers.

A customer is awarded a loyalty point every time they buy a coffee.

The programmer has decided to use a global 2D array Loyalty of type INTEGER. The array Loyalty is made up of 1000 rows and 2 columns. Each row relates to one customer; column 1 contains the unique customer ID and column 2 contains the number of customer loyalty points.

Rows in the array Loyalty that are not currently being used have the value of Column 1 set to 99999

The array is sorted in ascending order by customer ID.

The programmer has defined a program module:

ModuleDescription
FindCustomer()• called with parameter of type INTEGER representing a customer ID
• searches the Loyalty array for this customer ID
• the search will stop as soon as the customer ID is found
• the search should efficiently deal with the situation when the customer ID is not stored in the Loyalty array
• if the customer ID is found, return an integer value representing the loyalty points, otherwise return -1
(a)

Write efficient pseudocode for module FindCustomer()

8M
(b)

A customer can claim a free coffee for every 11 loyalty points.

The programmer has defined a second program module:

ModuleDescription
PointsReport()• output the customer ID for each customer who has 11 or more loyalty points
• output the average loyalty points for all customers in the Loyalty array along with an appropriate message

Write efficient pseudocode for module PointsReport()

Assume the array contains the data for at least one customer.

7M
(c)

The programmer decides to amend the customer ID; it will be stored as a STRING instead of an INTEGER. This means that the 2D array Loyalty can no longer be used.

3M
(i)

Explain why the 2D array Loyalty can no longer be used.

1M
(ii)

Explain how a 1D array could be used to store both the loyalty points and the amended customer ID.

2M