9618/22

Computer Science 9618/22May/June 2024

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

8
questions
75
marks
120
minutes

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

Q1Medium-EasyAlgorithm Design and Problem-solvingProgrammingSoftware Development

Refer to the insert for the list of pseudocode functions and operators.

(a)

The following table contains pseudocode examples.

Each example may contain statements that relate to one or more of the following:

  • selection
  • iteration (repetition)
  • input/output.

Complete the table by placing one or more ticks (✓) in each row.

Pseudocode exampleSelectionIterationInput/Output
FOR Index ← 1 TO 10
Data[Index] ← 0
NEXT Index
WRITEFILE ThisFile, "****"
UNTIL Level > 25
IF Mark > 74 THEN
READFILE OldFile, Data
ENDIF
4M
(b)

Program variables have data types as follows:

VariableData type
MyCharCHAR
MyStringSTRING
MyIntINTEGER

Complete the table by filling in each gap with a function (from the insert) so that each expression is valid.

Expression
MyInt ← .......................................... (3.1415926)
MyChar ← .......................................... ("Elwood", 3, 1)
MyString ← .......................................... ( .......................................... (27.509))
MyInt ← .......................................... ( .......................................... ("ABC123", 3))
4M
(c)

The variables given in part (b) are chosen during the design stage of the program development life cycle.

The choices are to be documented to simplify program maintenance.

State a suitable way of documenting the variables and give one piece of information that should be recorded, in addition to the data type.

2M
Q2MediumAlgorithm Design and Problem-solvingProgramming

A program is being developed.

(a)

An algorithm for part of the program will:

  • input three numeric values and assign them to identifiers Num1, Num2 and Num3
  • assign the largest value to variable Ans
  • output a message giving the largest value and the average of the three numeric values.

Assume the values are all different and are input in no particular order.

Complete the program flowchart on page 5 to represent the algorithm.

5M
(b)

A different part of the program contains an algorithm represented by the following program flowchart:

Write pseudocode for the algorithm.

5M
Q3Medium-EasyData Types and Structures

A factory needs a program to help manage its production of items.

Data will be stored about each item.

The data for each item will be held in a record structure of type Component.

The programmer has started to define the fields that will be needed as shown in the table.

FieldExample valueComment
Item_Num123478a numeric value used as an array index
RejectFALSETRUE if this item has been rejected
Stage'B'a letter to indicate the stage of production
Limit_113.5any value in the range 0 to 100 inclusive
Limit_226.4any value in the range 0 to 100 inclusive
(a)
6M
(i)

Write pseudocode to declare the record structure for type Component.

4M
(ii)

A 1D array Item of 2000 elements will store the data for all items.

Write pseudocode to declare the Item array.

2M
(b)

State three benefits of using an array of records to store the data for all items.

3M
Q45MMediumProgrammingAlgorithm Design and Problem-solving

A triangle has sides of length A, B and C.

In this example, A is the length of the longest side.

This triangle is said to be right-angled if the following equation is true:

A×A=(B×B)+(C×C)A \times A = (B \times B) + (C \times C)

A procedure will be written to check whether three lengths represent a right-angled triangle. The lengths will be input in any sequence.

The procedure IsRA() will:

  • prompt and input three integer values representing the three lengths
  • test whether the three lengths correspond to the sides of a right-angled triangle
  • output a suitable message.

The length of the longest side may not be the first value input.

Write pseudocode for the procedure IsRA().

Similar questions
Q5MediumProgrammingSoftware Development

A program is being designed in pseudocode.

The program contains a global 1D array Data of type string containing 200 elements.

The first element has the index value 1.

A procedure Process() is written to initialise the values in the array:

PROCEDURE Process(Label : STRING)
    DECLARE Index : INTEGER
    Index ← 0
    INPUT Data[Index]
    WHILE Index < 200
        Index ← Index + 1
        CASE OF (Index MOD 2)
            0 : Data[Index] ← TO_UPPER(Label)
            1 : Data[Index] ← TO_LOWER(Label)
            OTHERWISE : OUTPUT "Alarm 1201"
        ENDCASE
    NEXT Index
    OUTPUT "Completed " & Index & " times"
ENDPROCEDURE
(a)
5M
(i)

The pseudocode contains two syntax errors and one other error.

Identify the errors.

Syntax error 1 ....................................................................................................................

Syntax error 2 ....................................................................................................................

Other error .........................................................................................................................

3M
(ii)

The procedure contains a statement that is not needed.

Identify the pseudocode statement and explain why it is not needed.

Statement ..........................................................................................................................

Explanation .......................................................................................................................

2M
(b)

After correcting all syntax errors, the pseudocode is translated into program code which compiles without generating any errors.

When the program is executed it unexpectedly stops responding.

Identify the type of error that has occurred.

1M
Q6Medium-HardProgrammingAlgorithm Design and Problem-solvingData Types and Structures

A music player stores music in a digital form and has a display which shows the track being played.

(a)

Up to 16 characters can be displayed. Track titles longer than 16 characters will need to be trimmed as follows:

  • Words must be removed from the end of the track title until the resulting title is less than 14 characters.
  • When a word is removed, the space in front of that word is also removed.
  • Three dots are added to the end of the last word displayed when one or more words have been removed.

The table below shows some examples:

Original titleDisplay string
12345678910111213141516
Bat out of HullBatoutofHull
Bohemian SymphonyBohemian...
Paperbook WriterPaperbookWriter
Chris Sings the BluesChrisSings...
Green Home AlabamaGreenHome...

A function Trim() will:

  • take a string representing the original title
  • return the string to be displayed.

Assume:

  • Words in the original title are separated by a single space character.
  • There are no spaces before the first word or after the last word of the original title.
  • The first word of the original title is less than 14 characters.

Write pseudocode for the function Trim().

7M
(b)

Music is stored as a sequence of digital samples.

Each digital sample is a denary value in the range 0 to 99999999 (8 digits).

The samples are to be stored in a text file. Each sample is converted to a numeric string and 32 samples are concatenated (joined) to form a single line of the text file.

Each numeric string is 8 characters in length; leading ‘0’ characters are added as required.

Example:

SampleDenary valueString
1456"00000456"
248"00000048"
337652"00037652"

| | |
| 32 | 673 | "00000673" |

The example samples will be stored in the text file as a single line:

"000004560000004800037652...00000673"

3M
(i)

Identify one drawback of adding leading ‘0’ characters to each numeric string.

1M
(ii)

Suggest an alternative method of storing the samples which does not involve adding leading ‘0’ characters but which would still allow each individual sample to be extracted.

1M
(iii)

State one drawback of the alternative method given in part (b)(ii).

1M
Q7MediumAlgorithm Design and Problem-solvingSoftware Development

A fitness club has a computerised membership system.

The system stores information for each club member: name, home address, email address, mobile phone number, date of birth and exercise preferences.

Many classes are full, and the club creates a waiting list for each class. The club adds details of members who want to join a class that is full to the waiting list for that class.

When the system identifies that a space is available in one of the classes, a new module will send a text message to each member who is on the waiting list.

(a)

Decomposition will be used to break the new module into sub-modules (sub-problems).

Identify three sub-modules that could be used in the design and describe their use.

Sub-module 1 ...........................................................................................................................

Use ...........................................................................................................................................

Sub-module 2 ...........................................................................................................................

Use ...........................................................................................................................................

Sub-module 3 ...........................................................................................................................

Use ...........................................................................................................................................

3M
(b)

A different part of the program is represented by the following state-transition diagram.

6M
(i)

Complete the table to show the inputs, outputs and next states.

Assume that the current state for each row is given by the ‘Next state’ on the previous row. For example, the first Input-A is made when in state S1.

If there is no output for a given transition, then the output cell should contain ‘none’.

The first two rows have been completed.

InputOutputNext state
S1
Input-AnoneS3
Output-W
none
Input-B
Input-A
S4
5M
(ii)

Identify the input sequence that will cause the minimum number of state changes in the transition from S1 to S4.

1M
Q8Medium-HardAlgorithm Design and Problem-solvingSoftware DevelopmentProgrammingData Types and Structures

A teacher is designing a program to process pseudocode projects written by her students.

Each student project is stored in a text file.

The process is split into a number of stages. Each stage performs a different task and creates a new file.

For example:

File nameComment
MichaelAday_src.txtStudent project file produced by student Michael Aday
MichaelAday_S1.txtFile produced by stage 1
MichaelAday_S2.txtFile produced by stage 2
(a)

Suggest a reason why the teacher’s program has been split into a number of stages and give the benefit of producing a different file from each stage.

Reason .....................................................................................................................................

Benefit ......................................................................................................................................

2M
(b)

The teacher has defined the first program module as follows:

ModuleDescription
DeleteSpaces()• called with a parameter of type string representing a line of pseudocode from a student’s project file
• returns the line after removing any leading space characters

The following example shows a string before and after the leading spaces have been removed:

Before: " IF X2 > 13 THEN"
After: "IF X2 > 13 THEN"

Complete the pseudocode for module DeleteSpaces().

FUNCTION DeleteSpaces(Line : STRING) RETURNS STRING
























ENDFUNCTION
6M
(c)

Two modules are defined:

ModuleDescription
DeleteComment() (already written)• called with a parameter of type string representing a line of pseudocode from a student’s project file
• returns the line after removing any comment
Stage_2()• called with two parameters:
   ○ a string representing an input file name
   ○ a string representing an output file name
• copies each line from the input file to the existing output file having first removed all leading spaces and comments from that line
• does not write blank lines to the output file
• outputs a final message giving the number of blank lines removed

Write pseudocode for module Stage_2().

Modules DeleteComment() and DeleteSpaces() must be used in your solution.

8M