String handling operations in a programming language

EasyMedium
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
Question 47
Easy

Two extra lines are being added to the end of the algorithm in Figure 1.

Fill in the gaps so the output from the new final line will be the string 'Manchesterdon'.

Figure 1

1  cities ← ['Bristol', 'Manchester']
2  city1 ← 'London'
3  city2 ← 'Cardiff'
4  OUTPUT city1
5  OUTPUT LEN(cities)
6  temp ← SUBSTRING(0, 3, city1)
7  OUTPUT temp
temp ← SUBSTRING( _____, _____, city1)
OUTPUT cities[ _____ ] + temp
[2]

String handling operations in a programming language Questions

  1. GCSE
  2. /Computer Science
  3. /String handling operations in a programming language