COMPUTER SC. SL PAPER ONE in ENGLISH
COMPUTER SC. SL PAPER ONE in ENGLISH
COMPUTER SC. SL PAPER ONE in ENGLISH
Standard level
Paper 1
5 May 2023
1 hour 30 minutes
Instructions to candidates
Do not open this examination paper until instructed to do so.
Section A: answer all questions.
Section B: answer all questions.
The maximum mark for this examination paper is [70 marks].
2223 – 7014
5 pages © International Baccalaureate Organization 2023
–2– 2223 – 7014
Section A
3. Outline one reason for using Unicode to represent data in a computer system. [2]
(A nand B) nor C
7. Identify two layers in the Open Systems Interconnection (OSI) seven-layer model. [2]
–3– 2223 – 7014
7 21 5 19 6 2
K 0
A 0
B 0
loop while K 6
if DATA[K] 4 and DATA[K] 8
A A DATA[K]
B B 1
end if
K K 1
end loop
C A/B
Turn over
–4– 2223 – 7014
Section B
10. An organization needs to improve its current computer systems. The systems are legacy
systems with a large number of end users.
(a) Identify two issues concerning the roles of end users that must be considered in
relation to the new system. [2]
(c) Identify one method of gathering requirements from end users. [1]
(d) Explain one problem that may occur during data migration. [3]
(e) Explain one advantage of using parallel running instead of a direct changeover. [3]
(f) End users will require training in the use of the new system.
(ii) Evaluate the advantages and disadvantages for the end user of the method
of training identified in (f)(i). [3]
11. Many organizations use a virtual private network (VPN) to enable employees working
remotely to access files that are held on the organization’s server.
(a) State two technologies that are required to provide a virtual private network (VPN). [2]
(b) Identify two factors that may affect the speed of data transmission. [2]
(c) Explain why data compression would be used when data is transmitted. [3]
(f) Discuss the social impacts of this changed work pattern on employees. [4]
–5– 2223 – 7014
12. There are 1000 rooms where students can live on a college campus. The rooms are numbered
from 1 to 1000. The bill for each room must be paid each month.
The room numbers of the students who have paid their bills for the month of May so far are
stored in the ROOMNUMS array (see Figure 1).
ROOMNUMS [0] [1] [2] [3] [4] [5] [6] [7] [8] [9]
For example, the bill for room number 93 has been paid. This can be seen in ROOMNUMS[6].
The campus administrator would like to check whether the student in room number X has
paid the bill for the month of May or not.
The sub-program check(ROOMNUMS) accepts the array ROOMNUMS, allows room number X to
be input, searches for X in the ROOMNUMS array, and outputs an appropriate message.
Figure 2 shows two examples of input and output for the data stored in the ROOMNUMS array
as given in Figure 1.
Example 1 Example 2
Output: “The student in room 216 Output: “The student in room 444
has paid the bill” has not paid the bill yet”
(d) Construct an algorithm in pseudocode to sort the ROOMNUMS array in ascending order
using the selection sort algorithm. [6]